@charset "UTF-8";

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FUNDO */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #5f2c82, #49a09d);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CARD LOGIN */
.login {
    background: white;
    padding: 35px;
    border-radius: 15px;
    width: 320px;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.25);
    text-align: center;
    position: relative;
}

/* TÍTULO */
.login h1 {
    color: #5f2c82;
    margin-bottom: 20px;
    font-size: 22px;
}

/* INPUTS */
.login input[type="text"],
.login input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

/* FOCO */
.login input:focus {
    border-color: #5f2c82;
    outline: none;
    box-shadow: 0 0 5px rgba(95,44,130,0.3);
}

/* BOTÃO */
.botao {
    margin-top: 15px;
    background: #5f2c82;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.botao:hover {
    background: #4a2268;
}

/* LOGO SUPERIOR */
.container {
    position: absolute;
    top: 40px;
    text-align: center;
}

.container img {
    width: 120px;
    height: auto;
}

/* RESPONSIVO */
@media (max-width: 400px) {
    .login {
        width: 90%;
        padding: 25px;
    }
}

/* LOGO ACIMA DO LOGIN */
.logo-topo {
    position: absolute;
    top: calc(50% - 220px);
    left: 50%;
    transform: translateX(-50%);
}

.logo-topo img {
    width: 160px;
}
}