/* ===========================================
// date update: 8/Oct/2025
// v1.0.0 intial release
// 2025 FADC. All Rights Reserved.
// ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #000;
    min-height: 100vh;
    margin: 0;
    background: #EDF2F7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    margin-bottom: 50px;
}

p {
    padding: 4px;
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
}

footer {
    text-align: center;
    padding: 16px;
    margin-bottom: 50px;
    font-size: 14px;
    color: #12367B;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    width: 100%;
    max-width: 415px;
    padding: 30px 40px;
    height: 500px;
    flex-shrink: 0;
    border-radius: 10px;
    /* border: 1px solid #D6D6D6; */
    border: 1px solid #D6D6D6;
    /* background: rgba(255, 255, 255, 0.60); */
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.card-title {
    font-weight: 600;
    font-size: 20px;
    color: #12367B;
    text-align: center;
    padding: 15px;
    margin-bottom: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    /* color: #707070; */
    border-radius: 6px;
    border: 1px solid #A9A9A9;
    outline: none;
    background: #FFF;
}

.btn-custom {
    color: #FFFFFF;
    font-size: 18px;
    align-items: center;
    padding: 10px;
    margin-top: 90px;
    border: none;
    cursor: pointer;
    width: 335px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #89aacd;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.btn-custom:active,
.btn-custom:focus {
    background-color: #42668c;
    color: #FFFFFF;
    outline: none;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #89aacd;
}

.toggle-password svg {
    width: 20px;
    height: 20px;
}

.web-version {
    text-align: center;
    color: #12367B;
    padding: 30px;
    font-size: 14px;

}