@import url('https://fonts.googleapis.com/css2?family=Jersey+10&family=Press+Start+2P&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('/imagens/fundo login.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Press Start 2P', sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 20px;
    margin: 0;
}

.login_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.login_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.login_header h1 {
    color: black;
    font-size: 2.5em;
    animation: mudarCor 5s infinite;
    text-align: center;
}

.login_header img {
    width: 150px;
}

.login_input {
    border: 2px solid black;
    border-radius: 8px;
    color: black;
    font-size: 1.2em;
    margin-bottom: 15px;
    max-width: 300px;
    width: 100%;
    padding: 15px;
    outline: none;
}

.login_button {
    background-color: #0044f2;
    padding: 15px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 1.2em;
    width: 100%;
    max-width: 300px;
    border: none;
}

.login_button:disabled {
    background-color: #eee;
    color: #aaa;
    cursor: auto;
}

@keyframes mudarCor {
    0%   { color: #4577c1; }
    25%  { color: #6f9ffb; }
    50%  { color: #7ca2c2; }
    75%  { color: #182435; }
    100% { color: black; }
}

@media (max-width: 768px) {
    body {
        background-image: url('/imagens/fundo\ login2.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .login_header h1 {
        font-size: 2em;
    }

    .login_input {
        padding: 12px;
        font-size: 1.1em;
    }

    .login_button {
        padding: 12px;
        font-size: 1.1em;
    }
}


@media (max-width: 480px) {
    body {
        background-image: url('/imagens/fundo\ login2.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .login_header h1 {
        font-size: 1.6em;
    }

    .login_input {
        padding: 10px;
        font-size: 1em;
    }

    .login_button {
        padding: 10px;
        font-size: 1em;
    }
}