/* Login Page Styles */
html body {
    background: #F9FAFB;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Layout */
.login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 424px;
    max-width: none;
    z-index: 1000;
}

.card-body {
    width: 424px !important;
    height: 586px !important;
    padding: 46px;
    box-sizing: border-box;
    overflow-y: auto;
}

.logo-container {
    padding-top: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Typography */
.title-bold {
    font-family: Inter;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: #000000;
}

.subtitle-style {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #454C54;
    padding-bottom: 1rem;
}

.no-account {
    color: #59636E;
    margin-bottom: 0rem !important;
    margin-top: 0.3rem !important;
}

.font {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
}

.link-font {
    color: #F1582B;
    font-weight: 500;
}

    .link-font:hover {
        color: #F1582B !important;
    }

/* Form Styling */
input {
    border-color: #aaa !important;
}

/* Validation Styles */

.input-validation-error {
    border-color: #dc3545 !important;
    border-width: 1px !important;
}

.field-validation-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 0.25rem;
    display: block;
}

.field-validation-valid {
    display: none;
}

.validation-summary-errors {
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 1rem;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 1.5rem;
}

.validation-summary > ul {
    padding-left: 0rem;
    padding-top: 0.5rem;
    list-style: none;
}

.validation-summary > ul > li {
    padding-left: 0rem;
}

/* Links */
#forgot-password {
    font-family: Inter;
    color: #F1582B !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 0.3rem !important;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #59636E;
    z-index: 10;
}

.password-toggle:hover {
    color: #000000;
}

/* Input Filled State */
.input-filled {
    background-color: #E0E6EB !important;
}

/* Autofill Detection and Styling */
@keyframes onAutoFillStart {
    from { opacity: 1; }
    to { opacity: 1; }
}

input:-webkit-autofill {
    animation-name: onAutoFillStart;
    animation-duration: 0.001s;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #E0E6EB inset !important;
    box-shadow: 0 0 0 30px #E0E6EB inset !important;
    -webkit-text-fill-color: #000000 !important;
}

input:autofill {
    background-color: #E0E6EB !important;
}

input:-moz-autofill,
input:-moz-autofill-preview {
    background-color: #E0E6EB !important;
}

input:-ms-input-placeholder {
    background-color: #E0E6EB !important;
}

/* Terms Content */
#terms-content a {
    font-size: 16px;
    color: #F1582B !important;
    text-decoration: underline;
}

#terms-content a:hover {
    font-size: 16px;
    color: #F1582B !important;
    text-decoration: none;
}

/* Utility Classes */
.col-sm-0 {
    padding-right: 0px;
    padding-left: 0px;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

.swal2-popup #swal2-content {
    text-align: unset;
}
