/*
 * Specific styles of signin component
 */


/*
 * General styles
 */
 #myVideo {
    position: fixed;
    right: 0;
    bottom: -35vh;
    min-width: 100%;
    min-height: 100%;
  }

body {
    background-repeat: no-repeat;
    background-image: url('../img/login/bg-login-20.jpg');
    background-size: cover;
    /*background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);*/
}

.container-fluid {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-container.card {
    padding: 40px 40px 40px 40px;
    border-radius: 17px;
    
    
}



.btn {
    font-weight: 700;
    height: 36px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
}


/*
* Card component
*/

.card {
    width: 300px;
    height: 430px;
    background-color:rgb(255, 255, 255,0.9);
    
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.profile-img-card {
    width: 150px;
    height: 100px;
    margin: auto;
    margin-bottom: 10px;
    padding: 0;
    display: inline;
    /* -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;*/
}


/*
* Form styles
*/

.reauth-email {
    display: block;
    color: #404040;
    line-height: 2;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    height: 50px;
}

.icon {
    background-color: rgb(104, 145, 162);
    height: 44px;
    width: 0%;
    display: none;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    animation: regresar .4s;
    animation-fill-mode: forwards;
}

.icon-focus {
    background-color: #d6bd0d;;
    height: 44px;
    width: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    animation: mover .4s;
    animation-fill-mode: forwards;
}

.icon-focus-2 {
    background-color: #d6bd0d;;
    height: 44px;
    width: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    animation: regresar .4s;
    animation-fill-mode: forwards;
}

@keyframes mover {
    from {
        width: 0%;
    }
    to {
        width: 20%;
    }
}

@keyframes regresar {
    from {
        width: 20%;
    }
    to {
        width: 0%;
    }
}

#cardlogin{
    opacity: 0;
    animation: card 1.3s;
    animation-fill-mode: forwards
}



@keyframes card{
    from{
       opacity:0 ;
    }

    to{
        opacity:1 ;
    }
}


.input-icon {
    width: 24px;
    height: 24px;
}

.inputUser,
.inputPassword {
    width: 100%;
    direction: ltr;
    height: 44px;
    font-size: 16px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.form-signin .inputUser-focus,
.form-signin .inputPassword-focus {
    width: 100%;
    direction: ltr;
    height: 44px;
    font-size: 16px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
    display: block;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.credentials {
    height: 130px;
    
}

.form-signin .form-control:focus {
    border-color: rgb(104, 145, 162);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgb(104, 145, 162);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgb(104, 145, 162);
}

.form-group-b {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

.btn.btn-signin {
    /*background-color: #4d90fe; */
    background-color: #001e32;
    /* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/
    color: #c0b8b8;
    
    font-weight: 700;
    font-size: 14px;
    height: 42px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
    margin-bottom: 10px;

}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
    background-color: #001e32;
    ;
}

.forgot-password {
    margin-bottom: 18px;
    color: rgb(104, 145, 162);
    text-decoration: none;
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus {
    color: rgb(40, 145, 162);
    text-decoration: none;
}