Full page background with visual effect .login-body2 {
    height: 100vh;
    padding: 10px 1rem;
    /* background-color: rgba(32, 75, 131, 0.595);  */
    background-image: url(https://img.freepik.com/premium-vector/network-connection-background-abstract-style_23-2148875738.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    display: block;
}


@media (max-width: 600px) {
    .login-body2 {
        background-size: cover;
        /* Ensures the background image covers the screen */
        background-position: center;
        /* Keeps the image centered */
        min-height: 100vh;
        /* Ensures it takes the full height of the viewport on mobile */
    }
}


@media (max-width: 1024px) {
    .login-body2 {
        background-size: cover;
        /* Ensures the image covers the screen */
        background-position: center;
        /* Centers the image */
        min-height: 100vh;
        /* Ensures it takes the full height of the viewport */
    }
}

/* Form box with rounded corners */
.form-section2 {
    max-width: 500px;
    margin: 2em auto;
    text-align: center;
    background-color: white;
    padding: 30px 30px !important;
    max-height: 550px;
    border-radius: 150px 0px 150px 0px;
    margin-top: 120px;
}

/* Form content center alignment */
.form-content2 {
    text-align: center;
}

.logo1 {
    max-width: 100px;
    margin-bottom: 20px;
}

h5 {
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group1 {
    margin-bottom: 20px !important;
    /* width:80%; */
    /* margin-left:20px;
    margin-right:20px; */
    /* margin-right:65px;
    margin-left:50px; */

}

.form-control1,
.custom-dropdown1 {
    /* Combined styles for form controls */
    width: 100%;
    /* Set to full width */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.toggle-password {
    margin-top: 5px;
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    float: right;
}


.btn1 {
    width: 80%;
    /* Set to full width */
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
}

.signup-text1 {
    margin-top: 20px;
    font-size: 18px;
}

.signup-link1 {
    color: #007bff;
}

.error-text {
    color: red;
    font-size: 12px;
}



.input-container1 {
    position: relative;
    /* Positioning context for the icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    /* Adjust according to your design */
    top: 50%;
    transform: translateY(-50%);
    /* Center vertically */
    background: none;
    border: none;
    cursor: pointer;
    color: #007bff;
    /* Change the color as needed */
    font-size: 16px;
    /* Adjust size as needed */
}