/* File: assets/css/style.css */

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

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

.auth-container {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #444;
}

input, select {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fafafa;
    transition: border-color 0.2s;
}

input:focus, select:focus {
    border-color: #3498db;
    outline: none;
    background-color: #fff;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background-color: #3498db;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.error-msg {
    background-color: #ffdddd;
    color: #a94442;
    padding: 0.75rem;
    border-left: 5px solid #e74c3c;
    border-radius: 5px;
    margin-bottom: 1rem;
}
