/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 26, 2019, 3:57:51 AM
    Author     : Tim
*/

.login-form {
    margin: 25px auto;
    background-color: rgba(19,22,32,1);
    border-radius: 4px;
    padding: 35px;;
    width: 750px;
    min-height: 300px;
    color: #fff;
}

.message {
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
}

.signin-button {
    width: 90%;
    font-size: 27px;
    margin: 20px auto;
}

a.create-account-button {
    margin-top: -15px;
}

a.create-account-button:hover {
    text-decoration: none;
}

.form-element {
    position:relative;
}

.form-element .form-textbox {
    font-size: 17px;
    line-height: 1.23543;
    font-weight: 400;
    letter-spacing: -.022em;
    font-family: SF Pro Text, SF Pro Icons, AOS Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    width: 90%;
    height: 3.3em;
    margin-top: 25px;
    margin-bottom: .82353rem;
    padding-top: 1.05882rem;
    padding-left: .94118rem;
    padding-right: .94118rem;
    color: #333;
    text-align: left;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: hsla(0, 0%, 100%, .8);
    background-clip: padding-box;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance:textfield;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.form-element .form-label {
    position: absolute;
    pointer-events: none;
    top: 37px;
    left: 45px;
    transition: 0.2s ease all;
    color: gray;
    font-size: 20px;
}

.form-element input:focus ~ .form-label,
.form-element input:not(:focus):valid ~ .form-label,
.form-element select:focus ~ .form-label,
.form-element select:not(:focus):valid ~ .form-label {
    top:30px;
    left: 48px;
    font-size: 13px;
    opacity: 1;
}

.form-error {
    position: absolute;
    color: red;
    font-size: 12px;
    top: 80px;
    left: 35px;
    display: none;
}

.login-form h1 {
    font-size: 1.5rem;
}

@media screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px)
and (orientation: portrait) {
    ul {
        padding-left: 5px;
        padding-right: 5px;
    }

    .mct {
        padding: 0;
    }

    a.create-account-button {
        align-self: flex-start !important;
        margin-left: 35px;
    }
}

@media screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px)
and (orientation: landscape) {
    a.create-account-button {
        align-self: flex-start !important;
        margin-left: 40px;
    }
}
