body {
    background: linear-gradient(to bottom, #fbc178, #fff);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Maven Pro';
}
.auth-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.auth-container label {
    font-weight: 600;
    text-align: left;
    display: block;
    margin-bottom: 5px;
}
.auth-container input {
    border-radius: 8px;
}
.auth-btn {
    background-color: #fbc178;
    color: white;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
}
.auth-btn:hover {
    background-color: #e0a561;
}
.auth-link {
    font-size: 14px;
}
.auth-link a {
    text-decoration: none;
    color: #fbc178;
    font-weight: bold;
}
.logo {
    border-radius: 5%;
}