body {
    background-color: #f0f2f5;
    font-family: "Inter", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 980px;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .login-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
    }

    .exosis-text-container {
        flex: 1;
        text-align: left;
    }

    .login-form-container {
        flex: 0 0 400px;
        margin-right: 0.5rem;
    }
}

.exosis-text-container {
    text-align: left;
    padding-bottom: 1rem;
}

.exosis-logo {
    color: #020202;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.exosis-description {
    font-size: 1.75rem;
    color: #1c1e21;
    line-height: 1.3;
}

.login-form-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
    width: 100%;
    max-width: 400px;
}

.login-form-card .form-control {
    border-radius: 0.375rem;
    padding: 0.875rem 1rem;
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
}

.login-form-card .btn-login {
    background-color: #020202 !important;
    border-color: #020202 !important;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    width: 100%;
    margin-bottom: 1rem;
}

.login-form-card .btn-login:hover {
    background-color: #111111 !important;
    border-color: #111111 !important;
}

.forgot-password-link {
    color: #0866ff;
    font-size: 0.875rem;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.hr-divider {
    margin: 1.25rem 0;
    border-top: 1px solid #dadde1;
}

.btn-create-account {
    background-color: #42b72a !important;
    border-color: #42b72a !important;
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    width: auto;
    display: block;
    margin: 0 auto 1rem auto;
}

.btn-create-account:hover {
    background-color: #36a420 !important;
    border-color: #36a420 !important;
}

.create-page-link-container {
    text-align: center;
    margin-top: 2rem;
    width: 100%;
}

.create-page-link {
    color: #1c1e21;
    font-size: 0.875rem;
    text-decoration: none;
}

.create-page-link strong {
    font-weight: 600;
}

.create-page-link:hover {
    text-decoration: underline;
}

.toggle-password-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 1.2rem;
    z-index: 2;
}
