@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:#ab3ce7;
   --dark-red:#ff05f7;
   --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);
}

.btn,
.delete-btn{
   width: 100%;
   border-radius: 50px;
   padding:10px 30px;
   color:var(--white);
   display: block;
   text-align: center;
   cursor: pointer;
   font-size: 20px;
   margin-top: 10px;
   height: 40px;
   border-left: 3px solid rgb(0, 0, 0);
   border-right: 3px solid rgb(0, 0, 0);
   line-height: 20px;
}
.btn{
   border: 0;
   width:100%;
   height: 40px;
   line-height: 10px;
   background:black;
   justify-content: center;
   text-align: center;
   border-left: 3px solid orange;
   border-right: 3px solid orange;
   font-size: 20px;
   padding: 14px 10px;
   outline: none;
   color: white;
   border-radius: 24px;
   transition: 0.25s;
   cursor: pointer;

}
.delete-btn{
   background-color: var(--red);
}

.delete-btn:hover{
   background-color: var(--dark-red);
}

.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-image: linear-gradient(45deg, rgb(73, 160, 30) 0%, rgb(73, 160, 30) 6%,rgba(76,40,41, 0.61) 6%, rgba(76,40,41, 0.61) 11%,rgb(103, 122, 81) 11%, rgb(103, 122, 81) 55%,rgb(118,103,116) 55%, rgb(118,103,116) 81%,rgb(132, 84, 131) 81%, rgb(132, 84, 131) 83%,rgb(135,35,142) 83%, rgb(135,35,142) 92%,rgb(162, 46, 182) 92%, rgb(162, 46, 182) 95%,rgb(177, 27, 207) 95%, rgb(177, 27, 207) 100%),linear-gradient(112.5deg, rgb(73, 160, 30) 0%, rgb(73, 160, 30) 6%,rgba(76,40,41, 0.61) 6%, rgba(76,40,41, 0.61) 11%,rgb(103, 122, 81) 11%, rgb(103, 122, 81) 55%,rgb(118,103,116) 55%, rgb(118,103,116) 81%,rgb(132, 84, 131) 81%, rgb(132, 84, 131) 83%,rgb(135,35,142) 83%, rgb(135,35,142) 92%,rgb(162, 46, 182) 92%, rgb(162, 46, 182) 95%,rgb(177, 27, 207) 95%, rgb(177, 27, 207) 100%),linear-gradient(67.5deg, rgb(73, 160, 30) 0%, rgb(73, 160, 30) 6%,rgba(76,40,41, 0.61) 6%, rgba(76,40,41, 0.61) 11%,rgb(103, 122, 81) 11%, rgb(103, 122, 81) 55%,rgb(118,103,116) 55%, rgb(118,103,116) 81%,rgb(132, 84, 131) 81%, rgb(132, 84, 131) 83%,rgb(135,35,142) 83%, rgb(135,35,142) 92%,rgb(162, 46, 182)
    92%, rgb(162, 46, 182) 95%,rgb(177, 27, 207) 95%, rgb(177, 27, 207) 100%),linear-gradient(90deg, rgb(68,47,222),rgb(170, 57, 157)); background-blend-mode:overlay,overlay,overlay,normal;
   display: flex;
   align-items: center;
   justify-content: center;
   padding:20px;

}

.form-container form{
   padding:20px;
   background-color:rgba(0, 0, 0, 0.176);
   backdrop-filter: blur(5px);
   box-shadow: var(--box-shadow);
   justify-content: center;
   text-align: center;
   width: 380px;
   border-radius: 5px;
}

.form-container form h3{
   margin-bottom: 10px;
   font-size: 30px;
   color:var(--white);
   text-transform: uppercase;
}

.form-container

form input[type="text"], form input[type="password"], form input[type="email"],form [type="file"]{
   border: 0;
   background: none;
   display: block;
   text-align: center;
   border-left: 3px solid rgb(0, 255, 234);
   border-right: 3px solid rgb(0, 255, 234);
   width: 100%;
   padding:12px 14px;
   font-size: 18px;
   margin:10px 0;
   outline: none;
   color: white;
   border-radius: 24px;
   transition: 0.25s;
}
form input[type="text"]:focus, form input[type="password"]:focus, form input[type="email"]:focus{
 
   border-color: rgb(230, 0, 255);
   backdrop-filter: blur(5px);
   width: 100%;
}
form input[type="submit"].btn{
   border: 0;
   width:100%;
   height: 40px;
   line-height: 10px;
   background:black;
   justify-content: center;
   text-align: center;
   border-left: 3px solid orange;
   border-right: 3px solid orange;
   font-size: 20px;
   padding: 14px 10px;
   outline: none;
   color: white;
   border-radius: 24px;
   transition: 0.25s;
   cursor: pointer;

}
form input[type="submit"]:hover{
   backdrop-filter: blur(5px);
   border-color: rgb(0, 0, 0);
   width: 101%;
}
.form-container form p{
   margin-top: 15px;
   font-size: 16px;
   color:white;
}

.form-container form p a{
   color:Red;
}

.form-container form p a:hover{
   text-decoration: underline;
}

.container{
   min-height: 100vh;
   background-color: var(--light-bg);
   display: flex;
   align-items: center;
   justify-content: center;
   padding:20px;
}

.container .profile{
   padding:20px;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   text-align: center;
   width: 400px;
   border-radius: 5px;
}

.container .profile img{
   height: 150px;
   width: 150px;
   border-radius: 50%;
   object-fit: cover;
   margin-bottom: 5px;
}

.container .profile h3{
   margin:5px 0;
   font-size: 20px;
   color:var(--black);
}

.container .profile p{
   margin-top: 20px;
   color:var(--black);
   font-size: 20px;
}

.container .profile p a{
   color:var(--red);
}

.container .profile p 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: 200px;
   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%;
   background-color: var(--light-bg);
   padding:12px 14px;
   font-size: 17px;
   color:var(--black);
   margin-top: 10px;
   border-left: 3px solid rgb(0, 255, 234);
   border-right: 3px solid rgb(0, 255, 234);
   outline: none;
   border-radius: 50px;
   transition: 0.25s; 
}
.update-profile form .flex .inputBox .box:focus{
   width: 100%;
   background-color: var(--light-bg);
   padding:12px 14px;
   font-size: 17px;
   color:var(--black);
   margin-top: 10px;
   border-left: 3px solid rgb(200, 0, 255);
   border-right: 3px solid rgb(212, 0, 255);
   outline: none;
   border-radius: 50px;
   transition: 0.25s; 
}


@media (max-width:650px){
   .update-profile form .flex{
      flex-wrap: wrap;
      gap:0;
   }
   .update-profile form .flex .inputBox{
      width: 100%;
   }
}


