
@font-face {
    font-family: 'Poppins-Bold';
    src: url(./fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: 'Poppins-Italic';
    src: url(./fonts/Poppins-Italic.ttf);
}

@font-face {
    font-family: 'Poppins';
    src: url(./fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: 'NunitoSans';
    src: url(./fonts/NunitoSans.ttf)
}

body{
    width: 100%;
    margin: 0;
    

    font-family: 'NunitoSans';
}

h1 {
    font-family: 'Poppins-Bold';
}

.btn a{
    background-color: red;
    
    overflow: hidden;
}
.btn a:visited{
    color: rgb(0, 60, 255);
}

.btn a:hover{
    color:white;
}

.blue-bg{
    background-color: cornflowerblue;
}

.navbar{
    margin: 0;
    height: 10vh;
    background-color:cornflowerblue;
    justify-content: space-between;
    display: flex;
    color: black;
}

.navbar .site {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
    overflow: hidden;
}

.navbar .site .siteLabel{
    font-size: 4.5em;
    font-family: 'Poppins-Bold';
}

.navbar .links{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right:50px;
}

.navbar .links ul{
    margin: 0;
    display:flex;
    flex-direction: row;
    list-style-type:none;    
}


.navbar .links a{
    text-decoration: none;
    font-weight: bold;
    font-size:1.5rem;
    transition: 0.2s ease-out;
    color: black;
    padding: 2rem;
}

.navbar .links a:hover{
    transition: 0.2s ease-out;
    background-color: rgba(0,0,0,0.1);
}

.formHeader{
    font-size: 2em;
    font-weight:900;
    text-align: center;
    margin: auto;
    font-family: 'Poppins-Bold';
}

 .container{
    display: flex;
    align-items: center;
    justify-content:center;
    height:100%;
    max-height: fit-content;
    width: min(900px,100% -3rem);
}

@media only screen and (max-width:600px) {
    .formContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    

    padding:20px;
    background-color: rgb(240, 240, 240);
    border-radius:10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

}

.formContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35vw;
    

    padding:20px;
    background-color: rgb(240, 240, 240);
    border-radius:10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

label{
    font-weight: bold;
    font-size: 1.1em;
    
    font-family: 'Poppins';
}

 input{
    height: 30px;
    
    margin-bottom: 25px;
}

.btn {
    width: fit-content;
    height: 40px;
    text-align: center;
    justify-self: center;
    color:rgb(0, 60, 255);
    border-color: rgb(0, 60, 255);
    border-width:1px;
    background-color: rgba(0,0,0,0);
    border-radius:10px;
    font-weight: 900;
    font-size: 14px;
    
    transition:0.1s;
}

.btn:hover{
    transition: 0.1s;
    
    background-color: blue;
    color: white;
    cursor: pointer;
}

#registerBtn{
    display: flex;
    justify-self: center;
    align-self: flex-end;
    align-items: center;
}

#loginBtn{
    display: flex;
    justify-self: center;
    align-self: flex-end;
    align-items: center;
}

.homeLogo{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.homeLogo h1{
    font-size: 1.5em;
    text-shadow: 0px 0px 10px black;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.error{
    color:red;
}

.success {
    color:green;
}

.policyBtn{
    text-align: left;
    background-color: rgba(240, 248, 255, 0);
    cursor: pointer;
    border-width: 0;
    color:cornflowerblue;
    text-decoration:underline;

}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(219, 218, 218, 0.815);
    border-radius: 5px;
}

.profileCard{
    color: black;
    
    background-color: cornflowerblue;
    width: 350px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.profileCard p {
    margin-left: 20px;;
}

.computersContainer{
    display: flex;
    flex-wrap: wrap;
    min-width: fit-content;
    background-color: cornflowerblue;
    padding: 1.5rem;
    border-radius: 8px ;

}

.pc{
    align-items:center ;
    border: 5px solid black;
    margin: 15px;
    border-width: 5px;
    width: 10vw;
    min-width: fit-content;
    padding: 1vh;
    display: flex;
    flex-direction: column;
}

.available {
    border-color: green;
    background-color: greenyellow;  
}

.disabled {
    border-color: rgb(165, 0, 0);
    background-color: rgb(255, 118, 118);
}

.used {
    border-color: rgb(179, 116, 0);
    background-color: rgb(255, 195, 83);
}

table {
    width: 100%;
    border: 1px solid black;
    border-collapse: collapse;
}

td, th{
    word-wrap: break-word;
    max-width: 400px;
    text-align: left;
    padding: 1rem;
}

.blue-table-striped{
    border-collapse: collapse;
}

.blue-table-striped tr:nth-child(1){
    background-color: cornflowerblue;
}

.blue-table-striped tr:nth-child(odd):not(:first-child){
    background-color: #f2f2f2;
}

.sidebar{
    min-height: 100vh;
    width: 15%;
    background-color: cornflowerblue;
    z-index: 1;
}


.sidebar a {
    text-decoration: none;
    display: block;
    color:black;
    font-weight: bold;
    font-size: 1.2em;
    padding: 1.2rem;
}

.sidebar a:hover {
    background-color: rgba(0, 0, 0, 0.11);
    color: white;
}

.adminContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.adminContent{
    display: flex;
    flex-direction: column;
    width: 85%;
    
    min-height: 100vh;
    
    margin-bottom: 10vh;
    align-items: center;
}

.adminContent .header{
    margin: 50px;
    font-family: 'Poppins-Bold';
    text-transform: uppercase;
    font-size: 3rem;
}

.activated {
    text-align: center;
    padding: 0.1rem;
    background-color: green;
    color: white;
    font-weight: bold;
    border-radius: 8px;
}

.disabledAcc {
    text-align: center;
    padding: 0.1rem;
    background-color: red;
    color: white;
    font-weight: bold;
    border-radius: 8px;
}
.search{
    width: 100%;
}

.commentsContainer{
    background-color: rgb(235, 235, 235);
    border-radius: 8px;
    margin: 35px;
    padding: 20px;
    width: 50vw;
    height: fit-content;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.11);
}

.comment {
    display: flex;
    flex-direction: column;
    margin: 5px;
    padding: 5px;
    height: max-content;
    width: 100%;
    background-color: rgb(228, 228, 228);
}

.comment img {
    height: 50%;
    
}


.dashboardCard.green{
    background-color: green;
}

.dashboardCard.red{

    background-color: red;
}

.dashboardCard.orange{
    background-color: rgb(255, 174, 25);
}

.dashboardCard  {
    color: white;
    margin: 50px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.585);
    min-width: 10vw;
    height: fit-content;
    max-width: fit-content;
    padding: 25px;
}
