@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
   --blue:#3498db;
   --dark-blue:#2980b9;
   --red:#e74c3c;
   --dark-red:#c0392b;
   --black:#333;
   --white:#fff;
   --light-bg:#eee;
   --box-shadow:0 5px 10px rgba(0,0,0,.1);
}

*{
   font-family: 'Poppins', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border: none;
   text-decoration: none;
}

*::-webkit-scrollbar{
   width: 10px;
}

*::-webkit-scrollbar-track{
   background-color: transparent;
}

*::-webkit-scrollbar-thumb{
   background-color: var(--blue);
}
button.white{
   font-size: 19px;
   font-weight: 600;
   padding: 11px 18px;
   color: blue;
   background-color: transparent;
   cursor: pointer;
   border: 1px solid blue;
   outline: none;
   transition: 0.2s;
   margin-bottom: 1rem;
   margin-top: 0rem;
   width: 100%;
   border-radius: 1rem;

}

.btn2,
.delete-btn{
   width: 100%;
   border-radius: 5px;
   padding:10px 30px;
   color:var(--white);
   display: block;
   text-align: center;
   cursor: pointer;
   font-size: 20px;
   margin-top: 10px;
}

.btn2{
   background-color: var(--blue);
}

.btn2:hover{
   background-color: var(--dark-blue);
}

.delete-btn{
   background-color: var(--red);
}

.delete-btn:hover{
   background-color: var(--dark-red);
}

.btn3{
   width: 100%;
   border-radius: 30px;
   padding:10px 30px;
   color:var(--dark-blue);
   display: block;
   text-align: center;
   cursor: pointer;
   font-size: 19px;
   margin-top: 0px;
   background-color: #f4f4f4;
   
}
.btn3:hover{
   background-color: lightcyan;
}

.message{
   margin:10px 0;
   width: 100%;
   border-radius: 5px;
   padding:10px;
   text-align: center;
   background-color: var(--red);
   color:var(--white);
   font-size: 20px;
}

.form-container{
   min-height: 100vh;
   background-color: var(--light-bg);
   display: flex;
   align-items: center;
   justify-content: center;
   padding:20px;
}

.form-container form{
   padding:20px;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   text-align: center;
   width: 500px;
   border-radius: 5px;
}

.form-container form h3{
   margin-bottom: 10px;
   font-size: 30px;
   color:var(--black);
   text-transform: uppercase;
}

.form-container form .box{
   width: 100%;
   border-radius: 5px;
   padding:12px 14px;
   font-size: 18px;
   color:var(--black);
   margin:10px 0;
   background-color: var(--light-bg);
}

.form-container form p{
   margin-top: 15px;
   font-size: 20px;
   color:var(--black);
}

.form-container form p a{
   color:var(--red);
}

.form-container form p a:hover{
   text-decoration: underline;
}


.profiling {
   padding:0.5rem 9%;
}
.profile{
   padding:0.5rem 9%;
   position: fixed;
   bottom: 0; left: 0; right: 0;
   z-index: 1000;
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: #fff;

}

.profile .prof{
   display: flex;
   align-items: center;
}

.profile .prof img{
   height: 40px;
   width: 40px;
   border-radius: 90%;
   object-fit: cover;
   margin-bottom: 5px;
}

.profile h3{
   margin:0px 0;
   font-size: 20px;
   color:var(--black);
   padding-left: 0;
}

.profile  a{
   color:var(--red);
   padding-right: 0;
   font-size: 20px;
   
}

.profile  a:hover{
   text-decoration: underline;
}

.update-profile{
   min-height: 100vh;
   background-color: var(--light-bg);
   display: flex;
   align-items: center;
   justify-content: center;
   padding:20px;
}

.update-profile form{
   padding:20px;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   text-align: center;
   width: 700px;
   text-align: center;
   border-radius: 5px;
}

.update-profile form img{
   height: 200px;
   width: 200p;
   border-radius: 50%;
   object-fit: cover;
   margin-bottom: 5px;
}

.update-profile form .flex{
   display: flex;
   justify-content: space-between;
   margin-bottom: 20px;
   gap:15px;
}

.update-profile form .flex .inputBox{
   width: 49%;
}

.update-profile form .flex .inputBox span{
   text-align: left;
   display: block;
   margin-top: 15px;
   font-size: 17px;
   color:var(--black);
}

.update-profile form .flex .inputBox .box{
   width: 100%;
   border-radius: 5px;
   background-color: var(--light-bg);
   padding:12px 14px;
   font-size: 17px;
   color:var(--black);
   margin-top: 10px;
}

@media (max-width:650px){
   .update-profile form .flex{
      flex-wrap: wrap;
      gap:0;
   }
   .update-profile form .flex .inputBox{
      width: 100%;
   }
}
@media (max-width:375px){
   button.white {
      font-size: 19px;
      font-weight: 600;
      padding: 1px 0px;
      margin-top: 0rem;
      margin-bottom: 0rem;
      border-radius: 1rem;
  }

}
@media (max-width:414px){
   button.white {
      font-size: 19px;
      font-weight: 600;
      padding: 1px 0px;
      margin-top: 0rem;
      margin-bottom: 0rem;
      border-radius: 1rem;
  }

}
@media (max-width:820px){
   button.white {
      font-size: 23px;
      font-weight: 900;
      
      margin-top: 0rem;
      margin-bottom: 0rem;
      border-radius: 1rem;
  }

}