﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    max-width: 950px;
}

.right-panel {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    text-align: center;
}

.left-panel {
    flex: 1;
    background-image: url('/img/SDSPlusBG.png');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.background-container {
    background-image: url('/img/SDSPlusBG.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    /*    padding: 30px 40px;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    position: relative;
}

.login-container {
    background-color: #ffffff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 70px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-box {
  /*  width: 80%;*/
    max-width: 400px;
}

    .login-box h2 {
        color: #0f2b56;
        margin-bottom: 20px;
        text-align: center;
    }
.logo-container {
    margin-bottom: 20px; /* Add spacing below the logo */
}

.logo {
    max-width: 200px; /* Adjust logo size */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto;
}



/*.form-group {
    text-align: left;
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 5px;
    }*/



        /*.form-group input:focus {
            border-color: #fc8905;
        }*/

.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

    .checkbox-group label {
        display: flex;
        align-items: center;
    }

    .checkbox-group input {
        margin-right: 5px;
    }

    .checkbox-group a {
        text-decoration: none;
        color: #007bff;
        font-weight: bold;
    }

        .checkbox-group a:hover {
            text-decoration: underline;
        }





.password-toggle {
    position: relative;
    text-align: right;
    margin-top: -30px;
    margin-bottom: 10px;
    margin-right: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #007bff;
}

    .password-toggle:hover {
        text-decoration: underline;
    }

.login-footer {

    font-size: 10px;
    color: #666;
    text-align: center;
    padding: 5px;

}

.login-box h2 {
    color: #122C50;
    margin-bottom: 20px;
    text-align: center;
}

.input-group {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

    .input-group input {
        flex: 1;
        width: 100%;
        padding: 12px 40px 12px 40px;
        border-radius: 20px !important;
        border: none;
        background-color: #f0f0f0;
    }


.fa-eye {
    cursor: pointer; /* Changes cursor to pointer on hover */
}

    .input-group-i {
        position: absolute;
        /*top: 12px;*/
        left: 15px;
        color: #999;
    }

/*    .input-group .toggle-password {
        position: absolute;
        top: 12px;
        right: 15px;
        cursor: pointer;
        color: #999;
    }*/

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

    .remember-me input {
        margin-right: 8px;
    }

.login-btn {
    width: 100%;
    background-color: #0f2b56;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
}

.forgot-btn {
    width: 100%;
    background-color: #f58220;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 10px;
    color: #999;
}

.divider {
    border-top: 1px solid #e0e0e0;
    margin: 25px 0;
}