:root {
    --primary-red: #f42207;
    --bg-gray: #f9f9f9;
}

body {
    background-color: var(--bg-gray);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e5e5e5;
}

.brand-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-logo i {
    font-size: 3rem;
    color: var(--primary-red);
}

.brand-logo h2 {
    font-weight: 700;
    margin-top: 0.5rem;
    color: #030303;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fcfcfc;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(244, 34, 7, 0.1);
    border-color: var(--primary-red);
}

.input-group-text {
    cursor: pointer;
    background-color: transparent;
    border-left: none;
}

.password-field {
    border-right: none;
}

.footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
}

.footer-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}