
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #023047;
    background-image: url("../img/Fundobackground.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.titulo a{
    font-size: 25px;
    font-weight: 600;
}

.titulo p{
    font-size: 15px;
}

.container-fluid{
    display: flex;
    justify-content: center;
    align-items: center;
}

.fundo_login {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    margin: 20px;
    width: 100%;
    max-width: 1100px;
}

.logo {
    background-color: #01aae1;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 520px;
}

.sub_logo {
    background-color: transparent;
    background-image: url('../img/logooficialgp.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 80px;
    width: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.login {
    background-color: white;
    padding: 20px;
    flex: 1;
}

@media (max-width: 768px) {
    .fundo_login {
        flex-direction: column;
    }

    .logo {
        height: 200px;
    }

    .login {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .login {
        padding: 10px;
    }
}


#togglePassword{
    display: flex;
    justify-content: center;
    align-content: center;
    width: 40px;
    height: 38px;
    margin-top: 32px;
}

#login_margin{
    margin: 0;
    padding: 0;
}

#messages {
    margin: 20px 0;
}

.alert-list {
    list-style: none;
    padding: 0;
}

.alert {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

