/* Arquivo: css/login.css */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

header {
    background: #333;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: center;
}

.logo {
    width: 200px;
}

.login {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.login h1 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-align: center;
}

.login-form {
    background: #1e1e1e;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 100%;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #bbb;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: #333;
    color: #e0e0e0;
    transition: border 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #28a745;
}

.btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #218838;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #218838;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
}

.social-icon {
    color: #fff;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ddd;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        width: 90%;
        max-width: 100%;
    }

    header .container {
        justify-content: center;
    }
}
