body {
    padding-top: 0px;
    font-family: 'Inter', sans-serif;
}
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100vw;
}
.login-box {
    padding: 30px;
}
.login-box .title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}
.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}
.logo img {
    height: 60px;
    margin-left: auto;
    margin-right: auto;
}
.content {
    height: 100vh;
    background-color: white;
    color: #323F50;
}
.p-8 {
    padding: 8rem !important;
}
.content-container {
    padding: 0 50px 50px 50px;
}
.content-container .row {
    padding-top: 25px;
}
.content-container h2 {
    font-weight: 700;
    font-size: 1.5rem;
}
.content-container h4 {
    font-weight: 700;
    font-size: 1rem;
}
.content-container p {
    line-height: 10px;
    font-weight: 500;
}
.custom-checkbox-label {
    color: white;
}
.text-link {
    color: white;
}
.form-check-input {
    background-color: #323F50;
    border-color: white;
}
@media (max-width: 767px) {
    .logo img {
        height: 20vw;
        margin-left: auto;
        margin-right: auto;
    }
    .logo {
        margin-bottom: 50px;
    }
    .content-container {
        padding: 50px 20px 50px 20px;
    }
}

.login-page-wrapper {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.login-page-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/login-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    z-index: -1;
}

.login-page-wrapper-row {
    height: 100vh;
}

.login-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    color: #323F50;
}

.logo-img {
    height: 60px;
}

.login-card .title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 25px !important;
    color: #323F50;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #323F50;
    padding: 0.75rem 1rem;
}

.form-control::placeholder {
    color: rgba(50, 63, 80, 0.7);
}

.form-control:focus {
    background-color: rgba(0, 0, 0, 0.07);
    border-color: rgba(50, 63, 80, 0.5);
    color: #323F50;
    box-shadow: none;
}

.form-check-input {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.form-check-input:checked {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.form-check-label {
    color: #323F50;
    font-size: 0.9rem;
}

.text-link {
    color: #323F50;
    text-decoration: none;
    font-size: 0.9rem;
}

.text-link:hover {
    color: #0dcaf0;
    text-decoration: underline;
}

.btn-info {
    background-color: #4f46e5;
    border-color: #4f46e5;
    font-weight: 600;
    padding: 0.75rem 1rem !important;
}

.btn-info:hover {
    background-color: #3b30cc;
    border-color: #3b30cc;
}

.login-dashboard-image {
    max-width: 50vw;
    border-radius: 8px;
    margin-bottom: 30px !important;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #323F50;
    line-height: 1.2;
    margin-bottom: 1rem !important;
}

@media (max-width: 991.98px) {
    .login-page-wrapper .col-lg-5 {
        min-height: 100vh;
        background-color: rgba(33, 37, 41, 0.7);
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .login-card {
        padding: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .logo-img {
        height: 50px;
    }
    .login-card .title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .login-card {
        padding: 20px;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
}