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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: #242424;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.login-header p {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
}

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

label {
    display: block;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    background: #333333;
    border: 1px solid #404040;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #8b5cf6;
    background: #3a3a3a;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

input::placeholder {
    color: #666666;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: 13px;
}

.remember-label {
    display: flex;
    align-items: center;
    font-weight: 400;
    margin: 0;
}

.remember-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    cursor: pointer;
    accent-color: #8b5cf6;
}

.remember-forgot a {
    color: #999999;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.remember-forgot a:hover {
    color: #cccccc;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #8b5cf6;
    border: 1px solid #8b5cf6;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.login-btn:hover {
    background: #a78bfa;
    border-color: #a78bfa;
}

.login-btn:active {
    background: #7c3aed;
}

.signup-link {
    text-align: center;
    color: #999999;
    font-size: 13px;
}

.signup-link a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signup-link a:hover {
    color: #c4b5fd;
}

@media (max-width: 480px) {
    .login-container {
        max-width: 100%;
    }

    .login-card {
        padding: 30px;
    }

    .login-header h1 {
        font-size: 28px;
    }

    input, .login-btn {
        font-size: 13px;
        padding: 11px 12px;
    }
}

/* Estilos para o formulário de edição de perfil */
#edit-profile-form {
    margin-top: -60px;
    padding: 20px 40px 40px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
}

#edit-profile-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#edit-profile-form label {
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
}

#edit-profile-form input,
#edit-profile-form textarea {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #e4e4e4;
    font-size: 15px;
    transition: all 0.3s;
}

#edit-profile-form input:focus,
#edit-profile-form textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: #333;
}

#edit-profile-form textarea {
    resize: vertical;
    min-height: 80px;
}

#edit-profile-form button {
    align-self: flex-start;
    padding: 10px 30px;
    background: #a855f7;
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#edit-profile-form button:hover {
    background: #9333ea;
}

