/* Global Styles */
:root {
  --primary-color: #4a8f29;
  --secondary-color: #3a5bef;
  --accent-color: #e67e22;
  --text-dark: #333;
  --text-light: #777;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
}

.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.auth-card h1 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
}


.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
}

.auth-footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.form-errors {
    color: var(--danger-color);
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.social-login {
    margin: 1.5rem 0;
    text-align: center;
}

.social-login p {
    position: relative;
    margin: 1.5rem 0;
    color: #666;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #ddd;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.social-btn.google {
    background-color: #db4437;
}

.social-btn.facebook {
    background-color: #4267b2;
}

.social-btn.twitter {
    background-color: #1da1f2;
}

/* Footer */
footer {
    background-color: #4a8f29;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}