/* signup.css 2019-08-30 */

@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600");

html {

}

body {
    margin: 0;
    background-color: #f2f2f2;
    
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    color: #333333;
    -webkit-font-smoothing: antialiased;
}

#login, #reset, #create {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#login {
    display: table;
}

#reset {
    display: none;
}

#create {
    display: none;
}

h1 {
    font-size: 36px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 30px;
}

p {
    color: gray;
    text-align: center;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 500;
}

a {
    text-decoration: underline;
    color: gray;
}

input {
    display: block;
    margin: 20px auto;
    border: none;
    padding-left: 10px;

    width: 250px;
    height: 48px;
    font-size: 17px;
    box-sizing: border-box;
}

button {
    display: block;
    width: 250px;
    height: 48px;
    margin: 20px auto;
    border: none;
    border-radius: 0px;
    padding: 0px;
    background-color: #333333;
    
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
button:hover {
    background-color: #666666;
}

#alert {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

#background {
    position: absolute;
    width: 100%;
    height: 100%;
    
/*
    background: linear-gradient(rgba(220, 220, 220, 0.90), rgba(220, 220, 220, 0.90)),
        url(/images/bg2.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
*/
}

#logo {
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
}
#logo a {
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

#logo a:hover {
    margin: 0 10px 0 10px;
    padding: 0;
    color: #999999;
}

#displayCreate, #displayReset, .displayLogin {
    cursor: pointer;
}

/* misc */
.notif {
    position: fixed;
    width: 100%;
    height: 40px;
    top: -40px;
    left: 0px;
    
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    color: white;
    
    -webkit-transition: top 0.2s ease-in-out;
    -moz-transition: top 0.2s ease-in-out;
    -o-transition: top 0.2s ease-in-out;
    -ms-transition: top 0.2s ease-in-out;
    transition: top 0.2s ease-in-out;
}