*{
    padding: 0;
    margin: 0;
}
html::-webkit-scrollbar{
  display:none;
}


body{
    background: #efeeef;
    justify-content: center;
    align-items: center;
}

.topbar {
    background: linear-gradient(135deg, #f15b0e, #ff7e5f); 
    padding:10px;
    text-align: center;
  }
  
  #logo {
    height: 50px; 
  }

  h3 {
    color: white;
    font-size: 16px;
  }

  p{
    display: inline-block;
    margin-left: 95%;
    color: white;
    padding: 5px;
  }

  p:hover{
   border-bottom: 2px solid #fff;
  }

  #logout{
    color: white;
    font-size: 16px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;
    padding: 4px;
    border-radius: 3px;
   margin-left: 80%;
  }


.card {
    width: 300px;
    padding: 1.9rem 1.2rem;
  
    margin: auto;
    margin-top: 10px;
    text-align: center;
    background: white;
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.1),
               2px 2px 5px rgba(0, 0, 0, 0.1) ;
   }
   
   /*Inputs*/
   .field {
    margin-top: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    background-color: white;
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 1em 2em;
   }
   
   .input-icon {
    height: 1em;
    width: 1em;
    fill: #f15b0e;
   }
   
   .input-field {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #d3d3d3;
   }
   
   /*Text*/
   .title {
    margin-bottom: 1rem;
    font-size: 1.5em;
    font-weight: 500;
    color: black;
   }
   
   /*Buttons*/
   .btn {
    margin: 1rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: .8em;
    text-transform: uppercase;
    padding: 1.2em 2.4em;
    background-color: #f15b0e;
    color:rgba(0, 0, 0, 0.896);
    box-shadow: 0 8px 24px 0 rgb(255 235 167 / 20%);
    transition: all .3s ease-in-out;
   }
   
   .btn-link {
    color: #f5f5f5;
    display: block;
    font-size: .75em;
    transition: color .3s ease-out;
   }
   
   /*Hover & focus*/
   .field input:focus::placeholder {
    opacity: 0;
    transition: opacity .3s;
   }
   
   .btn:hover {
    background-color: #39393a;
    color: #f15b0e;
    box-shadow: 0 8px 24px 0 rgb(16 39 112 / 20%);
   }
   
   .btn-link:hover {
    color: #f15b0e;
   }
   