/*LOGIN*/

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0; /* Fundo claro */
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Centraliza verticalmente */
}

.login-box {
    width: 350px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-box:hover {
    transform: translateY(-5px); /* Efeito suave ao passar o mouse */
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/*Logo */
.logo {
    width: 100px;
    margin-bottom: 15px;
}

/*Título e Texto de Login */
h2 {
    color: #333;
    margin-bottom: 10px;
}

.login-text {
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

/*Campos do formulário */
.textbox {
    margin-bottom: 20px;
}

.textbox input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.textbox input:focus {
    border-color: #ff751a; /* Cor de foco nos inputs */
    outline: none;
}

/* Botão de login */
.btn {
    width: 100%;
    padding: 14px;
    background-color: #ff8c00; /* Laranja destacado */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.btn:hover {
    background-color: #ff751a; /* Efeito de hover */
    transform: translateY(-3px); /* Leve elevação */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Intensifica a sombra */
}

.btn:active {
    background-color: #ff6500; /* Cor ao clicar */
    transform: translateY(0); /* Volta ao estado normal */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Reduz a sombra */
}

#esqueci{
    display: flex;
    justify-self: center;
    margin-top: 10px;
    color: #888;
    text-decoration: none;
    transition: transform 0.3s ease;
}

#esqueci:hover{
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

#erro{
    background-color: rgb(255, 0, 0, 0.6);
    padding: 14px;
    border-radius: 4px;
    margin-bottom: 10px;
}

#erro p{
    margin: 0px;
}

/*Responsividade para telas menores */
@media (max-width: 400px) {
    .login-box {
        width: 90%;
        padding: 15px;
    }

    .btn {
        font-size: 14px;
        padding: 10px;
    }

    .textbox input {
        padding: 10px;
    }
}
