body .profile {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
body .profile .center {
  width: 100%;
  max-width: 1200px;
  display: flex;
  overflow: hidden;
}
body .profile .center .block {
  padding: 10px;
}
body .profile .center .block .table {
  margin: 0;
}
body .profile .center .block .info {
  font-size: 20px;
}
body .profile .center .block .info .save-btn {
  margin-right: 20px;
  font-weight: 600;
  transition-duration: .2s;
  padding: 1px 12px;
  border-radius: 15px;
  border: 2px solid #009BDB;
  background: #009BDB;
  color: white;
}
body .profile .center .block .info .save-btn:hover {
  color: black;
  background-color: white;
}
body .profile .center .block .info .signout-btn {
  display: inline-block;
  font-weight: 600;
  transition-duration: .2s;
  padding: 1px 10px;
  border-radius: 15px;
  color: black;
  border: 2px solid #009BDB;
  cursor: pointer;
}
body .profile .center .block .info .signout-btn:hover {
  color: white;
  background-color: #009BDB;
}
body .profile .center .block .deactivate-btn {
  transition-duration: .2s;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  color: white;
  background-color: red;
  border: red 2px solid;
  border-radius: 15px;
  padding: 1px 10px;
}
body .profile .center .block .deactivate-btn:hover {
  color: black;
  background-color: #fff;
}
body .profile .center .block #accountDeactivateForm .delete-confirm-btn {
  transition-duration: .2s;
  margin: 10px 0 ;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  color: white;
  background-color: red;
  border: red 2px solid;
  border-radius: 15px;
  padding: 1px 10px;
}
body .profile .center .block #accountDeactivateForm .delete-confirm-btn:hover {
  color: black;
  background-color: #fff;
}
