﻿/**************************
    UserLogin Stylesheet
 **************************/ 

.login {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    padding: 5px;
    border: 1px solid lightgrey;
    border-radius: 20px;
}

.login-header {
    height: 30%;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    padding: 5px;
}

.login-body {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.create-account {
    display: flex;
    flex-direction: column;
    width: 30%;
    border: 1px solid lightgrey;
    border-radius: 20px;
    justify-content: center;
    align-content: center;
}

.login-fields {
    display: flex;
    flex-direction: column;
}

.login-buttons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: space-between;
    justify-content: center;
}

.login-button {
    width: 50%;
    padding: 5px;
}

.forgot-password {
    width: 50%;
    padding: 5px;
    padding-top: 10px;
    font-size: 14px;
}

.login-email {
    font-weight:bold;
    display: flex;
    flex-direction: row;
    padding: 5px;
}

.login-email input {
    width: 80%;
}

.login-email label {
    padding-right: 42px;
}

.login-password {
    font-weight: bold;
    display: flex;
    flex-direction: row;
    padding: 5px;
}

.login-password input {
    width: 80%;
}


.login-password label {
    padding-right: 10px;
}

.create-account-text {
    font-weight: bold;
    font-size: 24px;
    padding: 5px;
    align-self: center;
}

.create-account-button {
    align-self: center;
}

.failed-login-text {
    padding: 5px;
    font-size: 14px;
    color: red;
    padding-bottom: 10px;
}

