/* Authentication pages styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h1 {
    color: #45a049;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* Role selection styling */
.role-selection {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.role-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 200px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #45a049;
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.role-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #45a049;
}

.role-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Form styling */
.auth-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: #45a049;
}

.btn-auth {
    width: 100%;
    padding: 0.75rem;
    background-color: #45a049;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn-auth:hover {
    background-color: #45a049;
}

/* Message styling */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: left;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: left;
}

/* Links styling */
.auth-links {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.auth-links a {
    color: #45a049;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .auth-container {
        width: 90%;
        padding: 1.5rem;
    }
    
    .role-card {
        width: 100%;
    }
} 