* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

.auth-page {
    background-image: url('../../images/login-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.auth-overlay-container {
    min-height: 100vh;
    background: linear-gradient(90deg, rgba(0, 9, 26, 9) 0%, rgba(25, 20, 87, .8) 50%, rgba(48, 29, 118, 0.7) 85%, rgba(82, 56, 145, 0.5) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-form-container {

}

.logo-container {
    margin-bottom: 50px;
    text-align: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-group input {
    background: rgba(255, 255, 255, 0.3) !important;
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 20px;
    width: 100%;

}

.password-container {
    padding: 0;
    position: relative;
}

.password-container .view-icon {
    position: absolute;
    right: 12px;
    top: 8px;
    cursor: pointer;
    width: 20px;
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.3) !important;  
}

.auth-tab-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.auth-tab-group .auth-tab-btn {
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}

.auth-tab-content {
    width: 350px;
}

.auth-tab-content-2 {
    display: none;
}

.tab-btn-active {
    border-bottom: 2px solid #005AE6;
}

.input-group label {
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.remember-me-div {
    margin: 0px 0px 20px;
}

.checkbox-container {
    color: #fff;
}

.submit-btn {
    background: linear-gradient(90deg, rgba(0,90,230,1) 0%, rgba(82,1,230,1) 50%);
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 20px;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.forgot-password-div {
    border-top: 1px solid #fff;
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
}

.forgot-password-div .auth-links {
    color: #fff;
    text-decoration: none;
}

.login-alert {
    max-width: 290px;
    margin: 0 auto 15px;
    color: red;
    text-align: center;
}

.alert-message {
    color: red;
    margin-top: 5px;
    font-size: 12px;
    font-style: italic;
}

/* body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

.auth-form-container {
    width: 580px;
    background-color: #066DB2;
    padding: 74px 0;
    border-radius: 10px;
}

.auth-form-container .logo-container {
    width: 222px;
    margin: auto;
    margin-bottom: 50px;
}

.auth-form-container .logo-container img {
    width: 100%;
}

.auth-form-container form {
    width: 290px;
    margin: auto;
    color: #fff;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
}

.input-group input,
.submit-btn {
    display: block;
    width: 100%;
    border: none;
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
    outline: none;
}


.submit-btn {
    background-color: #048cc3;
    color: #fff;
    border: 1px solid #fff;
    margin-top: 36px;
    margin-bottom: 5px;
    cursor: pointer;
}

.auth-links {
    text-decoration: none;
    color: #fff;
    font-style: italic;
    font-size: 12px;

}

.password-container {
    position: relative;
}

.view-icon {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.login-alert {
    max-width: 290px;
    margin: 0 auto 15px;
    color: red;
}

.alert-message {
    color: red;
    margin-top: 5px;
    font-size: 12px;
    font-style: italic;
}

.border-red {
    border: 1px solid red !important;
} */