body {
    font-family: 'Roboto Slab', serif !important;
    background-color: #f9f9f9 !important;
    margin: 0;
    padding: 0;
}

.login-card {
    max-width: 950px;
    min-height: 540px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.bg-brand {
    width: 50%;
    background: linear-gradient(135deg, #268ea6 0%, #1b6b7e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

.form-section {
    width: 50%;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #268ea6;
    z-index: 10;
}

.icon-field {
    width: 100% !important;
    padding: 12px 14px 12px 45px !important;
    border: 1px solid #d4d4d8 !important;
    background-color: #f9f9f9 !important;
    border-radius: 6px !important;
    font-size: 0.875rem !important;
    font-family: 'Roboto Slab', serif !important;
    color: #111827 !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.icon-field:focus {
    outline: none !important;
    border-color: #268ea6 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(38, 142, 166, 0.2) !important;
}

.btn-login {
    width: 100% !important;
    padding: 12px 20px !important;
    background-color: #268ea6 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    font-family: 'Roboto Slab', serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    box-shadow: 0 4px 6px -1px rgba(38, 142, 166, 0.3) !important;
}

.btn-login:hover {
    background-color: #1b6b7e !important;
}

@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
        max-width: 450px;
        min-height: auto;
    }

    .bg-brand {
        display: none !important;
    }

    .form-section {
        width: 100%;
        padding: 30px 24px;
    }
}
