body{
    margin: 0;
    padding: 0;
    background: #3498db;
    background: linear-gradient(30deg, #27ae60, #9b59b6, #3498db);
    background-size: 400% 400%;
    -webkit-animation: bgAnimation 12s ease infinite;
    animation: bgAnimation 12s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}
.unsubscribe-body{
    max-width: 440px;
    width: 94%;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 5px;
    padding: 2% 3%;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    box-sizing: border-box;
}
.unsubscribe-body h3{
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px auto;
}
.unsubscribe-body h5{
    font-size: 18px;
    font-weight: 400;
    margin: 5px auto 20px;
}
.unsubscribe-body p{
    font-weight: 300;
}
.unsubscribe-body .form-group{
    margin-bottom: 15px;
}
.unsubscribe-body .form-group input[type="text"]{
    width: 100%;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 2px;
    border: 1px solid #bdbdbd;
    height: 45px;
}
.unsubscribe-body .form-group input[type="submit"]{
    background: green;
    color: #ffffff;
    padding: 10px 25px;
    text-transform: capitalize;
    font-size: 18px;
    border-radius: 2px;
    border: 3px solid green;
    height: 45px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 10px #aaa;
}
.unsubscribe-body .form-group input[type="submit"]:hover{
    cursor: pointer;
    transform: scale(1.1);
}
.unsubscribe-body .form-group .alert{
    font-size: 12px;
    color: red;
}
.unsubscribe-success{
    text-align: center;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding: 20px;
}
.unsubscribe-success h1{
    font-weight: 600;
}
@-webkit-keyframes bgAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bgAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media(max-width: 575px){
    .unsubscribe-body{
        padding: 2% 7%;
    }
    .g-recaptcha{
        transform:scale(1.1);
        -webkit-transform:scale(1.1);
        transform-origin:0 0;
        -webkit-transform-origin:0 0;
    }
}
@media(max-width: 420px){
    .g-recaptcha{
        transform:scale(0.85);
        -webkit-transform:scale(0.85);
    }
}