﻿
.loginBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: lightgray
}

.loginBox-border {
    padding: 25px;
    border: 1px solid white;
    border-radius: 10px;
    background-color: white;
    height: auto;
    width: 350px;
}

.login-header {
    text-align: center;
}

.login-body {
    padding: 10px 0px 0px 0px;
}

.input-area {
    display: flex;
    flex-direction: column;
    width: 100%
}

.input-area label {
    font-size: 12px;
    /* padding-bottom: 5px; */
    font-weight: 700;
    margin-top: 20px;
}

.input-area input[type = text], .input-area input[type = password] {
    font-size: 14px;
    height: 40px;
    width: 100%;
    border: 1px solid #969292;
    border-radius: 5px;
    padding: 1px 7px;
    color: black;
}

.input-area span {
    font-size: small;
}

.login-btn {
    padding: 10px 0px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.login-btn button[type = submit] {
    background-color: black;
    color: white;
    width: 50%;
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 20px;
}

