* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    background: #141414;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}


.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    color: #667eea;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #969696;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #272727;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    color: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #AEFE00;
    transform: translateY(-1px);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #AEFE00;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary:active {
    transform: translateY(0);
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #2f2f2f;
}

.form-footer a {
    color: #AEFE00;
    text-decoration: none;
    font-weight: 600;
}

.form-footer p {
    color: #fff;
}

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

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.success-message {
    color: #27ae60;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Responsivo */
@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
}