/*
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 16, 2025, 12:10:21 PM
    Author     : jcoch
*/

body{
    margin: 0;
    padding: 0;
    font-family: 'Dosis', sans-serif;
    font-size: large;
    background-color: white;
}
button{
    padding: 5px 20px 5px 20px;
    background-color: white;
    border: 2px solid black;
    border-radius: 20px;
    font-size: large;
    cursor: pointer;
}
input{
    padding: 5px;
    border: 2px solid black;
    border-radius: 20px;
    text-align: center;
}
h1{
    text-align: center;
}

fieldset{
    width: 340px;
    margin-left: 10px;
}

fieldset > div{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#loginForm{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    padding: 10px 10px 10px 10px;
    border: 2px solid black;
    border-radius: 20px;
}
#loginForm > div{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}


#logo{
    background-image: url(../AT_logoH.png);
    width: 191px;
    height: 72px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}
#aboutAI{
    max-width: 600px;
    margin: auto;
    padding: 20px;
    text-align: justify;

}
#AIpromoImage{
    background-image: url(../PromoImageAceIT.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
    width: 300px;
    height: 200px;

}

#createAccountDiv{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#accountAlertDiv{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: 800;
}

.hiddenDiv{
    display: none;
}

.warning{
    color: red;
    font-weight: 800;
}
@media all and (min-width: 540px){
    #AIpromoImage{
        width: 480px;
        height: 480px;
    }
}
@media all and (min-width: 660px){
    #AIpromoImage{
        width: 600px;
        height: 600px;
    }
}

#mainDiv{
    position: fixed;
    left: 5px;
    right: 5px;
    top: 0;
    bottom: 30px;
    overflow-y: auto;
    overflow-x: hidden;
}

#footer{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}