:root {
    --primary-color: #FF9915;
    --secondary-color: #f56000;
    --highlight-color: #FAD928;
    --light-background: #FFF3E0;
}

body {
    font-family: -apple-system, system-ui, "system-ui";
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-form {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
}

.login-form .logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-form .logo img {
    max-width: 120px;
}

.login-form .form-control {
    border-radius: 6px;
}

.login-form .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 500;
}

.login-form .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.forgot-password {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #f56000;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password a:hover {
    text-decoration: underline;
    color: #28a89a;
}