.auth-page {
    padding: 30px;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-width: 100%;
}

.auth-form h1 {
    text-align: center;
    margin-bottom: 20px;
}

.auth-form .form-group {
    margin-bottom: 15px;
}

.auth-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: calc(100% - 12px);
    padding: 0.8em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.auth-form button[type="submit"] {
    width: 100%;
    padding: 0.8em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.auth-form button[type="submit"]:hover {
    background-color: #0056b3;
}

.auth-form p {
    margin-top: 15px;
    text-align: center;
}

.auth-form p a {
    color: #007bff;
    text-decoration: none;
}

.auth-form p a:hover {
    text-decoration: underline;
}

.error {
    color: red;
    margin-bottom: 10px;
    text-align: center;
}

