
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
text-align: justify;
}
.main{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(Images/bg.jpg);
  background-position: center;
  background-size: cover;
  font-family:tahoma;
  font-size:14px;
  direction:rtl;

}
.profile-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  width: 100%;
  border-radius: 25px;
  padding: 30px;
  border: 1px solid #ffffff40;
  box-shadow: 0 0px 1px rgba(0,0,0,0.1);
}
.image{
  position: relative;
  height: 150px;
  width: 150px;
}
.image .profile-pic{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.data{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  font-family:tahoma;
  font-size:14px;
  direction:rtl;
  align-items: center;
  justify-content: center;
}
.data h2{
  font-size: 33px;
  font-weight: 600;
}
span{
  font-size: 18px;
}
.row{
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.row .info{
  text-align: center;
  padding: 0 20px;
}
.buttons{
  display: flex;
  align-items: center;
  margin-top: 30px;
  font-family:tahoma;
  font-size:14px;
  direction:rtl;
}
.buttons .btn{
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 18px;
  white-space: nowrap;
	  background: linear-gradient(to left, #6e50ff 0%, #5c4ebf 100%)

}
.buttons .btn:hover{
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.4);
}
hr {border:1px solid #fff;height:4px;border-radius:10px;}

form {

  font-family:tahoma;
  font-size:14px;
  direction:rtl;
  text-align: center;
}
input[type=button], input[type=submit], input[type=reset] {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 10px 122px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  font-family:tahoma;
  font-size:14px;
  border-radius:10px;

}
input[type=text] {

  border-radius:6px;
  border-color: #04AA6D;
  color: black;

}