/* Estilos Login */

body {
    /* background: linear-gradient(135deg, #FF0080, #FF6600); */
    background-image: linear-gradient(0deg, rgb(0 0 0 / 30%), rgb(0 0 0 / 20%)), url('../img/fondo_login_default.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 17px;
    }

.login-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 3% 25px;
    max-width: 400px;
    width: 100%;
    margin: 7% auto;
    text-align: center;
    }
@media screen and (max-width: 700px) {
.login-container {
    padding: 25px 30px;
    margin: 17% auto;
    }
}

.login-container h1 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    }
        .login-container .input-group-text {
            background-color: transparent;
            border: none;
            color: #6c757d;
        }
        .login-container .form-control {
            border-radius: 50px;
        }
        .login-container button {
            border-radius: 50px;
            background: linear-gradient(135deg, #1A73E8, #00BFFF);
            border: none;
            color: #fff;
            font-weight: bold;
        }
        .login-container .social-icons a {
            margin: 0 10px;
            font-size: 20px;
            color: #007bff;
        }
        .login-container .social-icons a:hover {
            color: #0056b3;
        }
        .form-check-label {
            margin-left: 10px;
        }
        
        .input-group.mb-3 {
        border: 1px solid #ced4da;
        border-radius: 20px;
        }

.input-group-text {
    padding: 0 10px 0 15px;
    }
        
.form-control {
    border: none;
    border-left: 1px solid #ced4da;
    border-radius: 0;
    }


@media screen and (max-width: 780px) {
    .texto-celular {
        p, span, li, table, div, form, input, textarea { font-size: 12px; line-height: 1.2;}
        h1 {font-size: 23px; line-height: 1;}
        h2 {font-size: 18px; line-height: 1;}
        h3 {font-size: 15px; line-height: 1;}
        h4 {font-size: 13px; line-height: 1;}
    }
}


.logo_circulo {
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
    }

.footer {
    padding: 7px 15px;
    line-height: 1.2;
    font-size: 14px;
    color: #d3d3d3;
    background: none;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: -1;
}
.footer a {color: #fff;}

