.auth-wrapper {
    max-width: 650px;
    margin: 60px auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.auth-wrapper h2 {
    margin-bottom: 1rem;
    color: #2E7D32;
    font-size: 28px;
}

.auth-wrapper p {
    font-size: 14px;
    color: #666;
    margin-bottom: 2rem;
}

.auth-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.auth-form button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-form button:hover {
    background-color: #388e3c;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.auth-buttons a {
    background-color: #66bb6a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.auth-buttons a:hover {
    background-color: #388e3c;
    transform: scale(1.05);
}