@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
*{
    box-sizing: border-box;
}
#auth-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom:0;
    background: rgba(0, 0, 0, 0.8);
    font-weight: bold;
    border-radius: 10px;
}
@keyframes jump {
    0%{
        
        transform: scale(1);
        filter: blur(5px);
        opacity: 0;
     
    }
    10%{
        
        transform: scale(0.01);
        filter: blur(5px);
        opacity: 0;
     
    }
    20%{
        transform: scale(0.1);
        filter: blur(5px);
        opacity: 1;
     
    }
    90%{
       
        transform: scale(1);
       
    }
    100%{
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    
    }
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    color:white;
    cursor: pointer;
}
#auth-popup section{
    flex-direction: column;
    gap:20px;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    width: 30rem;
    height: fit-content;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00c6ff;
    color: white;
    letter-spacing: 2px;
    position: relative;
    animation: jump 0.3s ease-out;
}

#auth-popup section form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.form-group {
    width: 80%;
    margin-bottom: 20px;
    position: relative;
}

.field-group {
    width:100%;
    margin-bottom:20px;
}
.field-group label{
    margin-bottom: 5px; 
}

.form-group label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: white;
}

#btn-signin,#btn-register,#btn-opt{
    background: #00c6ff;
    border: none;
    color: #000;
    padding: 10px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform .2s;
}

#btn-signin:hover,#btn-register:hover,#btn-opt:hover{
    background-color: #007acc;
    transform: scale(1.1);
}

#btn-register:disabled,#btn-signin:disabled,#btn-opt:disabled,.btn:disabled{
    cursor:not-allowed;
    transform: none;
    background-color:#ccc;
}



ul{
    font-size: small;
    color: red;
    margin-bottom: 1rem;
}
.fa{
    position: absolute;
    top:35px;
    right: 10px;
    cursor: pointer;
}
#beforeLogin{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
}
.windows-link,.linux-link{
    color:#00c6ff;
    cursor: pointer;
    font-weight: bold;
    
   
}
.windows-link:hover,.linux-link:hover{
    color:#007acc;
    /* transform: scale(1.2); */
}
#afterLogin button{
    background-color: transparent;
    border: none;
}
.notification{
    margin-top: 15px;
    font: 0.8rem sans-serif;
    text-align: center;
}


.hide{
    display: none;
}

.flex{
    display: flex;
}

/* Style the dropdown container */
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s ease-in-out;
}

/* Style the dropdown options */
.form-group select option {
    padding: 10px;
    font-size: 16px;
}

/* Style the dropdown when focused */
.form-group select:focus {
    border-color: #007bff;
    outline: none;
}
.phone-group .btn{
    border:1px solid green;
    color:white;
    background-color: #007bff;
    font-size: small;
    outline: none;
    cursor: pointer;
    width: 30%;
    
}
.phone-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.phone-group #phone,#phone-recovery,#email-recovery{
    width:100%;
}
#to-password-recovery{
    text-decoration: underline;
    cursor: pointer;
    font-size: small;
}
#to-password-recovery:hover{
    color:#007bff;
   
}

.iti{
    width: 100%;
}





