@import url('/static/css/font.css');

* {
     font-family: 'Roboto-Regular';
}

.logins .centent {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.logins .logins-tlie {
    font-size: 16px;
    margin: 20px 0;
    text-align: center;
    font-weight: 320;
    color: #333;
}

.logins .form-group {
    margin-bottom: 10px;
}

.logins .form-group p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

p {
    margin: 0 0 10px;
}

.logins .form-group .form-control {
    border: 1px solid #a5a5a5;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
}

.logins .form-group+.form-group {
    margin-top: 10px;
}

.logins .form-group {
    margin-bottom: 10px;
}

.tishi {
    font-size: 18px;
    line-height: 50px;
    color: #c60505;
    text-align: center;
}

.logins .btn-default {
    margin: 30px 0 0;
    font-size: 18px;
    height: 40px;
    width: 100%;
    border-radius: 7px;
}

.btn-default {
    background: #007BFF;
    border-color: #007BFF;
    color: #fff;
}

.logins .donthave {
    margin: 10px auto 60px;
    width: 100%;
    height: 36px;
    border-radius: 10px;
    text-align: center;
}

.logins .donthave a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #007BFF;
    text-decoration: underline;
}

.form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
}

.registerjianjie {
    font-size: 12px;
    margin: 20px 0 0;
    color: #bcbcbc;
}

.registerjianjie a {
    color: #007BFF;
    text-decoration: none;
}

.logins .ahaclon {
    margin: 10px 0 20px;
    line-height: 18px;
    text-align: center;
}

h3,
.h3 {
    font-size: 24px;
    font-family: inherit;
    font-weight: 500;
    color: inherit;
    display: block;
}

.logins .ahaclon a {
    font-size: 14px;
    color: #007BFF;
    text-decoration: underline;
}

.logins .tefse {
    margin: 0 0 15px;
    font-size: 12px;
}

.logins .tefse {
    text-align: center;
}

.success-dialog {
    color: #333;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .2);
    align-items: center;
    justify-content: center;
    display: none;
    opacity: 0;
    transition: opacity ease-in-out .3s;
}

.success-dialog .dialog-card {
    padding: 2rem 1rem;
    width: 100%;
    height: 90%;
    background-color: #FFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success-dialog .dialog-card .succ-icon {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.success-dialog .dialog-card .succ-icon svg{
    width: 35vw;
    height: 35vw;
    color: #007BFF;
}

.success-dialog .dialog-card .action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.success-dialog .dialog-card .action .go-btn {
    width: 70%;
    font-size: 1.5rem;
    border-radius: .375rem;
    border: none;
    background-color: #007BFF;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
    color: #FFFFFF;
    padding: .6rem 2rem;
    letter-spacing: .35rem;
}

.success-dialog .dialog-card .info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.success-dialog .dialog-card .info h1 span {
    font-weight: bold;
    color: #007BFF;
}

.success-dialog .dialog-card .info p {
    display: flex;
    align-items: center;
    justify-items: center;
}

.success-dialog .dialog-card .loading .spinner {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}
  
.success-dialog .dialog-card .loading .spinner .dot1, .success-dialog .dialog-card .loading .spinner .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #007BFF;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.success-dialog .dialog-card .loading .spinner .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% { 
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% { 
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}