* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('../css/images/farm.png') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: linear-gradient(180deg, #fff9c4 0%, #fff 100%);
    border: 4px solid #ffb300;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    font-size: 4em;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.auth-header h1 {
    font-size: 1.8em;
    font-weight: 700;
    color: #4a3525;
    margin-bottom: 5px;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.6);
}

.auth-header p {
    color: #8b7355;
    font-size: 0.95em;
    font-weight: 500;
}

.auth-error {
    background: #fff0f0;
    border: 3px solid #f5c6cb;
    color: #c62828;
    padding: 14px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9em;
    line-height: 1.6;
    font-weight: 500;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #5d4037;
    font-size: 0.9em;
    font-weight: 600;
}

.form-group input {
    background: #faf8f5;
    border: 3px solid #ffe082;
    border-radius: 15px;
    padding: 14px 16px;
    color: #3e2723;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus {
    border-color: #ffb300;
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.2);
}

.form-group input::placeholder {
    color: #bcaaa4;
}

.auth-btn {
    background: linear-gradient(135deg, #66bb6a, #43a047);
    border: 3px solid #2e7d32;
    color: white;
    padding: 15px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: #8b7355;
    font-size: 0.9em;
    font-weight: 500;
}

.auth-footer a {
    color: #ff8f00;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.auth-footer a:hover {
    color: #e65100;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-logo {
        font-size: 3em;
    }
}