body {
    background-color: #f4f7f6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.login-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: white;
}

.brand-panel {
    background-color: #e84d1c;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
}

.logo-img {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.logo-mobile {
    max-width: 120px;
    margin-bottom: 1rem;
}

.form-control {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.form-control:focus {
    border-color: #e84d1c;
    box-shadow: 0 0 0 0.25rem rgba(232, 77, 28, 0.2);
    background-color: white;
}

.btn-brand {
    background-color: #e84d1c;
    color: white;
    border-radius: 50px;
    padding: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
}

.btn-brand:hover {
    background-color: #cf4115;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 77, 28, 0.3);
}

.text-brand {
    color: #e84d1c;
    text-decoration: none;
    font-weight: 500;
}

.text-brand:hover {
    color: #cf4115;
    text-decoration: underline;
}

.form-check-label {
    cursor: pointer;
    user-select: none;
}