body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.auth-container {
    width: 350px;
    margin: 60px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #0078ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #005fcc;
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}

.links {
    text-align: center;
    margin-top: 15px;
}

.links a {
    color: #0078ff;
    text-decoration: none;
}
.success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin-bottom: 15px;
    text-align: center;
}

