
:root{
    --color-principal:#08b4bc;
    --color-principal-oscuro:#0c595e;
  }

body{
    background: url(../img/login-background.jpg) no-repeat center center fixed;
    background-size: cover;
}

.main-section{
    margin: 0 auto;
    margin-top: 20%;
    padding: 0px;
}

.modal-content{
    background-color:rgba(255, 255, 255, 0.85);
    padding: 0 5% 5% 5%;
    border: none;
    box-shadow: 0px 0px 10px 1px var(--color-principal-oscuro)
}

.user-img{
    margin-top: -50px;
}

.user-img img{
    width: 100px;
    height: 100px;
    box-shadow: 0px 0px 10px 2px rgba(228, 242, 250, 0.651);
    border-radius: 50%;
}

.login_container {
    padding: 0 2rem;
}
.input-group-text {
    background: var(--color-principal) !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.btn{
    background-color: var(--color-principal);
    border: none;
    color: white;
    width: 60%;
    margin: 5px 0 25px;
}

.btn:hover{
    filter:brightness(85%);
}

.btn:active{
    filter:brightness(110%);
}

.form-group input{
    padding-left: 54px;
    border-radius: 5px;
}

.form-control:focus{
    box-shadow: 0 0 15px 2px rgba(34, 61, 98, 0.445); 
    border: 1px groove rgba(67, 82, 121, 0.514);
}

.form-group::before{
    font-family: "Font Awesome\ 5 Free";
    position: absolute;
    left: 28px;
    font-size: 20px;
    padding-top: 4px;
    color: rgb(26, 48, 78);
}
.form-group#user-group::before{
    content: "\f007";
}

.form-group#password-group::before{
    content: "\f023";
}

.forgot-password{
    padding: 5px 0;
}

.forgot-password a{
    color: rgb(9, 90, 241);
}

.navbar{
    background-color: #35393a !important;
}


.title-navbar{
    color:white;
}



