@charset "UTF-8";

.wrap{
    background-color: #12a1ff;
    overflow-x: hidden;
    width: 100%;
    overflow-y: hidden;
}

.container{
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 250px;
    height: 300px;
    padding: 20px;
    background: #1A2226;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.login-title {
    margin-top: 25px !important;
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: 15px;
    font-weight: bold;
    color: #ECF0F5;
}

.login-form {
    margin-top: 10px;
    text-align: center;
}

input[type=text] {
    width: 80%;
    background-color: #1A2226;
    border: none;
    border-bottom: 2px solid #0DB8DE;
    border-top: 0px;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    margin-bottom: 20px;
    padding: 8px 8px 8px 0px;
    color: #ECF0F5;
    font-size: 16px;
}

input[type=password] {
    width: 80%;
    background-color: #1A2226;
    border: none;
    border-bottom: 2px solid #0DB8DE;
    border-top: 0px;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    margin-bottom: 20px;
    padding: 8px 8px 8px 0px;
    color: #ECF0F5;
    font-size: 14px;
}

.form-group {
    margin: 20px 0;
    outline: 0px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid #0DB8DE;
    outline: 0;
    background-color: #1A2226;
    color: #ECF0F5;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0 !important;
}

.login-btm {
    float: left;
}

.login-button {
}

.login-text {
    text-align: left;
    padding-left: 0px;
    color: #A2A4A4;
    margin-left: 15px;
}

.text-danger {
    color: #f4e1e3!important;
    font-size: 12px;
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 15px;
}

.text-danger a {
    color: #f8f6f6 !important;
    font-size: 12px;
    font-weight: bold;
}

.btn-login{
    width: 170px;
    padding: 10px 0;
    border-radius: 5px;
    background: #b78233;
    color: #fff;
    cursor: pointer;
}

@media (min-width: 1200px){
    .text-danger {
        float: left;
    }
}
