* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #2a004f, #4b0082, #6a0dad);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER */
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* BOX PRINCIPAL */
.login-box {
    background: #120022;
    padding: 40px;
    border-radius: 16px;
    width: 360px;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.4);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

/* LOGO */
.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo h1 {
    color: #a855f7;
    font-size: 24px;
}

.logo p {
    color: #ccc;
    font-size: 14px;
}

/* ERRO */
.error-box {
    background: #ff2e63;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}

/* INPUTS */
.input-group {
    margin-bottom: 15px;
}

.input-group label {
    color: #c084fc;
    font-size: 13px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #4b0082;
    background: #1a0033;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 8px #a855f7;
}

/* BOTÃO */
.btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #a855f7;
}

/* FOOTER */
.footer {
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #888;
}