:root {
    --Color1: #89d2dc;
    --Color2: #6564db;
    --Color3: #232ed1;
    --Color4: #101d42;
    --Color5: #0d1317;  
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

body{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:var(--Color5);
    background-color: var(--Color4);
    font-size: 16px;
}



.alert{
    padding: 1em;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    border-radius: 3px;
    margin: 0 auto;
    max-width: 500px;

}
.notification{
    padding: 1em;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    border-radius: 3px;
    margin: 0 auto;
    max-width: 500px;
    opacity: 0;
    transition: all 0.3s;
}

.notification.show{
    opacity: 1;
    transition: all 0.3s;
}

.baseform{
    margin: 6em auto 1em;
    background-color: #ffffff;
    width: 500px;
    box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.baseform h1{
    text-align: center;
    padding:1.5em 0 1em 0;
}

.baseform form{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top:1em;
}

.chk-div{
    display: block !important;
}
.create{
    float: left;
}

/* .cbox + label {
    appearance: none;
    border: 2px solid var(--Color2);
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.cbox:hover + label {
    background-color: gray;
}

.cbox:checked + label{
    background-color: #000;
} */

.confirm form div{
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    padding:0 3em;
}

.forgot{
    float: right;
}
.forgot-div form div{
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    padding:0 3em;
}
.login form div{
    display: flex;
    flex-basis: 100%;
    padding:0 3em;
}

.login form label{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--Color2);
    color:#ffffff;
}

.show{
    display: block;
}


.signup form div{
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    padding:0 3em;
}

input[type="password"], input[type="text"], input[type="email"] {
    width: 100%;
    margin-bottom: 2em;
    padding: 0 1em;
    border: 1px solid var(--Color2);
    height: 50px;
}

.signup input[type="password"], .signup input[type="text"], .signup input[type="email"] {
    width: 100%;
    margin-bottom: 1em;
    padding: 0 0.7em;
    border: 1px solid var(--Color2);
    height: 45px;
}

input[type="submit"] {
    background-color: var(--Color2);
    width: 100%;
    margin-top: 2em;
    padding: 1.3em;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.2s;
}

input[type="submit"]:hover{
    background-color: var(--Color1);
    transition: all 0.2s;
}

@media screen and (max-width: 768px){

}


@media screen and (max-width: 468px){
    .baseform{
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 2em auto 1em;
    }

    .alert{
        width: 90%;
    }
    
}



