/* Form for the account removal reqeuest */
.request-section {
    color: white;
    text-align: center;
}
input {
    width: 100%;
    margin: 10px 0px 10px 0px;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
}
#submit {
    height: 50px;
    color: black;
    border: none;
}
.text-rem {
    text-align: left;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: black;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: black;
  }
#submit {
    transition: .2s;
    margin-bottom: 20px;
}
#submit:hover {
    transform: scale(1.02);
}
/* Loading */
.circle {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    margin-top: 15px;
    margin-bottom: 35px;
}
.circle div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: circle 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.circle div:nth-child(1) {
    animation-delay: -0.45s;
}
.circle div:nth-child(2) {
    animation-delay: -0.3s;
}
.circle div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes circle {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
