/*
 * Specific styles of signin component
 */
/*
 * General styles
 */
body, html {
    height: 100%;
    background-repeat: no-repeat;
    /*background-image: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/
	background: rgb(215,222,227); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(215,222,227,1) 1%, rgba(245,247,249,1) 68%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(215,222,227,1)), color-stop(68%,rgba(245,247,249,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(215,222,227,1) 1%,rgba(245,247,249,1) 68%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(215,222,227,1) 1%,rgba(245,247,249,1) 68%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(215,222,227,1) 1%,rgba(245,247,249,1) 68%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(215,222,227,1) 1%,rgba(245,247,249,1) 68%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7dee3', endColorstr='#f5f7f9',GradientType=0 ); /* IE6-9 */
}

.card-container.card {
    width: 320px;
    padding: 40px 40px;
}

.btn {
    font-weight: 700;
    height: 36px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    vertical-align: middle;
}

/*
 * Card component
 */
.card {
    background-color: #F7F7F7;
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    /* 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: 130px;
    height: 130px;
    margin: 0 auto 0px;
    display: block;
    /*-moz-border-radius: 20%;
    -webkit-border-radius: 20%;
    border-radius: 20%;*/
}

/*
 * Form styles
 */
.profile-name-card {
    font-size: 15px;
    
    text-align: center;
    margin: 10px 0 0;
    min-height: 1em;
}

.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 input[type=email],
.form input[type=password],
.form input[type=text],
.form button {
    direction: ltr;
    height: 44px;
    font-size: 16px;
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form .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);
}

.btn {
    /*background-color: #4d90fe; */
    background-color: rgb(104, 145, 162);
    /* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/
    padding: 0px;
    font-weight: 700;
    font-size: 14px;
    height: 36px;
    -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;
    vertical-align: middle;
}

.btn:hover,
.btn:active,
.btn:focus {
    background-color: rgb(12, 97, 33);
    cursor:pointer;
}


.olvido  
{
    position: relative;
    /*cursor: pointer;*/
    border-bottom: 2px;
    padding: 7px;
    font-size: 15px;

    color: gray;
    margin: 10px 0px;
    justify-content: center;  
    align-items: center;
    text-align: center;

}

.olvido:hover
{
	text-decoration: underline;
    color: blue;
}


.olvido .tooltip-text
{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    white-space: nowrap;
    padding: 10px 15px;
    border-radius: 7px;

    font-size: 10px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1000;

}

.olvido .tooltip-text::before
{
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: #000 #0000 #0000 #0000;

}

.olvido:hover .tooltip-text
{
    top:-130%;
    visibility: visible;
    opacity: 1;

}


.olvido .text-recovery
{
    cursor: pointer;
}