.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #f7f7f7;
}

.auth-card, .login-required-box {
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    border: 1px solid #ddd;
}

.auth-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-input {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

.auth-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 0.8rem;
    border: 2px solid #db4437;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.auth-btn:hover {
    background-color: #db4437;
    color: white;
    transform: scale(1.05);
}

.google-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 0.8rem;
    border: 2px solid #db4437;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.google-btn:hover {
    background-color: #db4437;
    color: white;
    transform: scale(1.05);
}

.google-btn img {
    margin-right: 15px;
    width: 32px;
    height: 32px;
}

.login-links a {
    display: inline-block;
    margin-bottom: 10px;
}
