/* Fundo gradiente com shapes decorativos */
body {
    min-height: 100vh;
    background: linear-gradient(120deg, #e6d0fc 0%, #d8bbfa 100%);
    overflow-x: hidden;
    font-family: 'Inter', Arial, sans-serif;
    position: relative;
}

/* Shapes/fluid bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.32;
    filter: blur(6px);
    z-index: 0;
}
.bubble1 { width: 340px; height: 340px; left: -120px; top: -120px; background: #bb74fd;}
.bubble2 { width: 220px; height: 220px; right: -80px; top: 20px; background: #e8cbfa;}
.bubble3 { width: 160px; height: 160px; left: 50vw; top: 76vh; background: #bb74fd;}
.bubble4 { width: 100px; height: 100px; left: 13vw; top: 80vh; background: #b484fd;}

/* Container do login */
.login {
    width: 340px;
    margin: 70px auto;
    background: #fff;
    border-radius: 15px;
    padding: 34px 32px 26px 32px;
    box-shadow: 0 8px 42px #b49dfa22, 0 2px 24px #c9a4fe33;
    position: relative;
    z-index: 1;
}

/* Título principal estilizado */
.devtitle {
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    text-align: center;
    font-size: 2.1em;
    font-weight: 800;
    background: linear-gradient(90deg,#a052e2 30%, #f0b3ff 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 34px;
    margin-top: 44px;
}

.login h2 {
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 1.23em;
    color: #7a39fa;
    text-align: center;
}

.login input[type="text"],
.login input[type="password"] {
    width: 97%;
    padding: 12px;
    margin: 9px 0 18px 0;
    border-radius: 6px;
    border: 1px solid #d2bdf8;
    font-size: 1em;
    background: #f8f4ff;
    transition: border .2s;
}
.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border: 1.5px solid #8a41f8;
    background: #f4ebff;
}

.login button {
    width: 100%;
    padding: 13px 0;
    background: linear-gradient(90deg,#a15df5,#ca9ff5 80%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.08em;
    margin-top: 3px;
    cursor: pointer;
    box-shadow: 0 1.5px 12px #dfccff33;
    transition: background .17s, box-shadow .17s;
}
.login button:hover {
    background: linear-gradient(90deg,#9a4be2,#b97fff 70%);
    box-shadow: 0 2px 18px #c7aaff3a;
}

.erro {
    color: #d81b60;
    margin-bottom: 18px;
    text-align: center;
    font-size: 1.04em;
}

@media (max-width:600px) {
    .login {width:97vw;padding:19px 7vw 21px 7vw;}
    .devtitle {font-size:1.5em;margin-bottom:18px;}
}
