/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Fundo */
body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container principal */
.login-container {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Título */
.login-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

/* Botões sociais */
.social-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.social-btn a{
    text-decoration: none;
    font-size: 16px;
   
}

.social-btn img {
    width: 20px;
}

.social-btn:hover {
    background-color: #f9f9f9;
}

/* Separador */
.separator {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.separator::before,
.separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.separator::before {
    left: 0;
}

.separator::after {
    right: 0;
}

.separator span {
    background: #fff;
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}

/* Labels */
form label {
    display: block;
    margin-bottom: 6px;
    margin-top: 15px;
    font-size: 13px;
    font-weight: bold;
    color: #555;
}

/* Inputs */
form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
}

form input:focus {
    border-color: #ff3344;
}

/* Esqueci senha */
.forgot {
    text-align: right;
    margin-top: 8px;
}

.forgot a {
    text-decoration: none;
    font-size: 14px;
    color: #ff3344;
}

/* Botão entrar */
.login-btn {
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    border: none;
    border-radius: 30px;
    background: #0044ff;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn a{
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
   
}

/* Manter conectado */
.remember {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}