:root {
    font-family: Arial, Helvetica, sans-serif;
    --base-unit: 0.5rem;
    --dc-gold:       rgb(255, 185, 0);      /* #FFB900 */
    --dc-gold-rgb:   255, 185, 0;
    --dc-green:      rgb(7, 51, 24);
    --white:         rgb(255, 255, 255);
    --mist:          rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--dc-green);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    margin-top: 50px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.logo {
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
    max-height: 240px;
    width: 50%;
}

.title {
    font-size: 32px;
    color: var(--dc-gold);
    margin-bottom: 30px;
}

.login-form {
    background: var(--mist);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dc-gold);
}

.form-group input {
    width: 100%;
    padding: 10px;
    background: var(--mist);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--dc-gold);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    padding: 10px 20px;
    background-color: var(--dc-gold);
    color: var(--dc-green);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--white);
    transform: translateY(-1px);
}

.forgot-password {
    margin-top: 20px;
}

.forgot-password a {
    color: var(--dc-gold);
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    color: var(--white);
}

.error-message {
    color: var(--red);
    background: rgba(255, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message {
    color: var(--dc-gold);
    background: rgba(var(--dc-gold-rgb), 0.1);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.radio-group {
    margin-bottom: 20px;
    text-align: left;
}

.radio-group label {
    display: flex;
    align-items: center;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.radio-group label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.radio-group input[type="radio"] {
    margin-right: 10px;
    width: auto;
}

@media (max-width: 480px) {
    .content {
        padding: 15px;
    }

    .logo {
        max-height: 180px;
    }

    .title {
        font-size: 28px;
    }

    .login-form {
        padding: 20px;
    }
}
