:root {
    font-family: "Poppins" ;
}

body {
    background: linear-gradient(244.06deg, #00E153 21.81%, #116731 61.71%, #0D4D25 77.93%, #041A0C 94.24%);
    background-attachment: fixed;
    height: 100vh;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-family: Poppins, sans-serif;
}

.login {
    text-align: center;
    position: absolute;
    width: 360px;
    height: 390px;
    left: calc(50% - 322px/2 + 0.5px);
    top: calc(50% - 420px/2 - 42px);
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    flex: none;
    order: 4;
    flex-grow: 0;
    z-index: 4;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-weight: 900;
    font-size: 32px;
    margin: 15px 0 10px;
}

.logo {
    width: 100%;
    margin: 0 auto 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    background: #f9f9f9;
}

.logo img {
    width: 24px;
    height: 23px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.logo p {
    display: inline;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    vertical-align: middle;
}

.caixa_login {
    display: block;
    width: 100%;
    height: 38px;
    margin: 10px 0;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    border-radius: 5px;
    border: 1px solid #ddd;
    color: rgb(0, 0, 0);
    box-sizing: border-box;
    padding: 0;
}

 ::placeholder {
        color: gray;
        transition: color 0.2s ease; 
    }


    input:focus::placeholder {
        color: white;
    }

.caixa_senha {
    display: block;
    width: 100%;
    height: 38px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 13px;
    text-align: center;
    border: 1px solid #ddd;
    color: rgb(0, 0, 0);
    box-sizing: border-box;
    padding: 0;
}

.e_senha {
    display: block;
    width: 100%;
    margin: 10px 0 0;
    margin-top: 15px;
    border-radius: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.4);
}

.entrar {
    display: center;
    width: 100%;
    height: 42px;
    margin: 15px 0 10px;
    border-radius: 9px;
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
    line-height: 38px;
    text-align: center;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    background-color: #000000;
    box-sizing: border-box;
    padding: 0;
}

.entrar:hover{
    background-color: #333333;
    transition: background-color 0.3s ease;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 12px;
}

@media (max-width: 768px) {
    body {
        min-height: 100vh;
        height: auto;
        padding: 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    main {
        width: 100%;
    }

    .login {
        position: static;
        width: 100%;
        max-width: 360px;
        height: auto;
        margin: 0 auto;
        padding: 20px;
    }

    h1 {
        font-size: 28px;
    }

    .logo {
        padding: 10px;
    }

    .logo p {
        font-size: 10px;
    }

    .caixa_login,
    .caixa_senha {
        height: 42px;
        font-size: 14px;
    }

    .entrar {
        height: 44px;
        font-size: 14px;
        line-height: normal;
    }

    .e_senha {
        font-size: 14px;
    }

    footer {
        position: static;
        padding: 15px 5px;
        margin-top: 20px;
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    body {
        padding: 15px;
    }

    .login {
        padding: 16px;
    }

    h1 {
        font-size: 26px;
    }

    .logo p {
        display: block;
        margin-top: 5px;
    }

    .logo img {
        margin-right: 0;
    }
}