body {
    background: linear-gradient(135deg, #24345e, #505e80, #2c3b63, #5D10C3);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.loginbox {
    width: 320px;
    height: 420px;
    background: rgba(36, 52, 94, 0.95); /* Fundo azul escuro semi-transparente */
    color: #ffffff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adiciona sombra para profundidade */
}



h1 {
    margin: 0;
    padding: 0 0 20px;
    font-size: 22px;
    color: #ffffff; /* Título em azul claro */
}

.loginbox p {
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #ffffff;
}

.loginbox input {
    width: 100%;
    margin-bottom: 20px;
}

.loginbox input[type="text"],
.loginbox input[type="password"] {
    border: none;
    border-bottom: 1px solid #FF6F00; /* Borda inferior azul claro */
    background: transparent;
    outline: none;
    height: 40px;
    color: #ffffff;
    font-size: 16px;
    padding: 5px;
    transition: border-color 0.3s;
}

.loginbox input[type="text"]:focus,
.loginbox input[type="password"]:focus {
    border-bottom: 1px solid #103EFF; /* Borda muda para azul mais escuro no foco */
}

.loginbox input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    background: #FF6F00; /* Botão azul escuro */
    color: #ffffff;
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.loginbox input[type="submit"]:hover {
    background: #FFA500; /* Botão muda para azul claro no hover */
    color: #24345e; /* Texto do botão escurece no hover */
}


         body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #3b5998, #192f6a);
        }
        .loginbox {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        footer {
            background-color: #111;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: auto;
            font-size: 14px;
        }
        footer p {
            margin: 5px 0;
        }
        footer i {
            margin-right: 5px;
        }



