/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Dec 7, 2023, 8:53:18 AM
    Author     : jcoch
*/
body{

    font-family: 'Exo', sans-serif;
}

input, textarea{
    padding: 8px 12px 8px 12px;
    border-radius: 5px;
    font-size: large;
}

button{
    padding: 6px 16px 6px 16px;
    min-width: 100px;
    border-radius: 4px;
    color: darkslategrey;
    font-weight: 700;
    background-color: rgba(240, 255, 240, 1);
}

select{

    background-color: white;
    padding: 8px 12px 8px 12px;
    border-radius: 5px;
}

button:disabled{
    color: #c0c0c0;
}

button:focus{
    border-width: 4px;
}

h3{
    text-align: center;

}
fieldset{
    width: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;

}
fieldset div{
    width: 320px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 6px;
}
fieldset label, input{
    width: 100px;
    height: 20px;
    margin: 3px 0 3px 0;
}
#userSignup{
    border: none;
}

.signupAlert{
    margin-top: 0px;
    margin-bottom: 7px;
}

#headlineDiv{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    width: 300px;
    margin: auto;
}

#miniLogo{
    background-image: url(../images/ACES_v4.png);
    background-size: contain;
    background-position: center;
    width: 50px;
    height: 50px;

}

#userLoginAlert{
    margin-top: 30px;
}

#loginACESUserFieldset{
    margin-top: 30px;
}

#loginACESUserFieldset > div{
    width: 100%;
    font-size: x-large;
}
#loginACESUserFieldset input{
    padding: 10px;
}

#helpBox{
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.94);
    color: white;
    z-index: 555;
}
#helpBox > div{
    padding: 10px;
}

#loginMain{
    margin-top: 20px;
}
#loginMain p{
    font-size: x-large;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.hiddenDiv{
    display: none;
}
.lbutton{
    border-radius: 15px 0 0 15px;
}
.rbutton{
    border-radius: 0 15px 15px 0;
}

.loadBarAnimation{
    animation-name: loading;
    animation-duration: 2s;
    width: 120px;
    height: 24px;
    margin: auto;
    margin-top: 40%;
    display: flex;
    align-items: center;
    justify-content: center;

}

@keyframes loading {
    0%{
        background-image: linear-gradient(to right, black, black, black, black, black);
        color: rgba(255,255,255,1);
    }
    20%{
        background-image: linear-gradient(to right, white, black, black, black, black);
        color: rgba(255,255,255,1);
    }
    40%{
        background-image: linear-gradient(to right, white, white, black, black, black);
        color: rgba(175,175,175,1);
    }
    50%{
        background-image: linear-gradient(to right, white, white, black, black, black);
        color: rgba(75,75,75,1);
    }
    60%{
        background-image: linear-gradient(to right, white, white, white, black, black);
        color: rgba(0,0,0,1);
    }
    80%{
        background-image: linear-gradient(to right, white, white, white, white, black);
        color: rgba(0,0,0,1);
    }
    100%{
        background-image: linear-gradient(to white, white, white, white, white, white);
        color: rgba(0,0,0,1);
    }
}

@media all and (min-width: 400px){
    #loginACESUserFieldset{
        width: 360px;
    }
}

@media all and (min-width: 600px){
    fieldset{
        width: 500px;
    }
    fieldset > div{
        width: 480px;
        margin: auto;
    }
    label{
        font-size: large;
    }
    input{
        width: 220px;
        font-size: x-large;
    }
    select{
        font-size: x-large;
        padding: 8px 12px 8px 12px;
    }
}