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

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

.auth-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin: 20px;
}

.auth-form {
    padding: 40px 30px;
    text-align: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #fd9644;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

h2 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #fd9644;
}

button {
    width: 100%;
    padding: 15px;
    background: #fd9644;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 20px;
}

button:hover {
    background: #f0f2f5;
}

.auth-links {
    text-align: center;
}

.auth-links a {
    color: #fd9644;
    text-decoration: none;
    font-weight: 500;
}

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

.error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c66;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}