/* 

    OleTalk Authentication Pages

    Copyright (c) 2023 Gallatin Engineering, All rights reserved.

    @VERSION: 0.1.0 a - alpha 
      Note: includes sign-up & sign-in screens.

*/


/*
*                       DEFAULT STYLE TEMPLATE
*   This template maintains styling consistency across all pages, sitewide.
*/


* {
    font-family:  Montserrat, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    width: auto;
}
/* 
#login-page {
    display: block;
}
#signup-page {
    display: none;
}
#reset-password-page {
    display: none;
}
 */

 
/* span {
    border: 1px solid blue;
} */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 7;
}
.title {
    text-align: center;
    font-size: 2.5em;
    color: blueviolet;
}
.heading {
    text-align: center;
    font-size: 1.2em;
}
.sub-heading {
    text-align: center;
    font-size: 0.7em;
    margin: 1.5em;
}
.outline {
    display: inline-block;
    /* border: 0.2em solid rgba(0, 0, 0, 1.0); */
    padding: 1.0em;
    border-radius:  2.5em;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: auto; */
    background-color: rgba(248, 248, 255, 0.668);
    /* max-width: 20.0em; */
    /* margin: 0; */
    box-shadow: 0.14em 0.1em 0.4em 0.01em rgba(0, 0, 0, 0.404), -0.01em -0.01em 0.01em 0.01em rgb(0, 0, 0, 0.404); 
}
/* .outline {
    display: none;
} */
.box {
    padding: 1.5em;
    display: none;
}
.rightBox {
    display: none;
}
.leftBox {
    display: none;
}
.active {
    display: block;
}
.form_text {
    font-size: 1.0em;
    margin-right: 0.5em;
}
.str_inputs {
    width: 95%;
    border: 0.05em solid grey;
    height: 2.6em;
    font-size: 0.9em;
    font-weight: 650;
    border-radius: 0.5em;
    padding-left: 0.7em;
    /* margin: 0.5em; */
}
.str_inputs:hover {
    border: 0.05em solid rgba(0, 0, 0, 1.0);
    background-color: rgba(190, 225, 240, 0.4);
    /* box-shadow: 0.1em 0.1em 0.1em 0.1em ; */
    /* transform: translate(-0.2em, -0.2em); */
} 
.btn {
    width: 40%;
    height: 3.0em;
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 1.0em;
    margin-bottom: 0.4em;
    /* margin-right: 0em; */
    border-radius: 0.7em;
}
form .reset {
    border: 0.1em solid red;
    color: red;
    background-color:rgba(0, 0, 0, 0.0);
}
form .reset:hover {
    background-color: rgba(255, 0, 0, 1.0);
    color: white;
    /* font-weight: bold;      */
}
form .send {
    color: rgba(0, 125, 0, 1.0);
    border: 0.1em solid rgba(0, 128, 0, 1.0);
    background-color:rgba(0, 0, 0, 0.0);
    float: right;
}
form .send:hover {
    background-color: rgba(0, 128, 0, 1.0);
    color: white;
    /* font-weight: bold;  0, 1.0) */   
}

.underBtnTxt {
    margin-top: 0.6em;
    font-size: 0.7em;
}
.fa-user {
    font-size: 3em;
    /* font-weight: 900; */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}