* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #dc3545 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
}

.logo-section {
    margin-bottom: 30px;
}

.logo {
    height: 60px;
    margin-bottom: 10px;
}

.logo-section h1 {
    color: #dc3545;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-section p {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.login-form h2 {
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc3545;
}

.login-btn {
    width: 100%;
    background: #dc3545;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background: #c82333;
}

.back-link {
    margin-top: 20px;
}

.back-link a {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.back-link a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-container {
        padding: 10px;
    }
    
    .login-card {
        padding: 30px 20px;
    }
}