:root {
    --primary: #FFCE00;
    --secondary: #FE4880;
    --dark: #212121;
    --light: #F3F3F3;
  }
  
  * {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: montserrat, sans-serif;
    width: 100%;
    min-height: 100vh;
  }
  
  .card {
    margin: 100px auto 0;
    width: 600px;
    height: 400px;
    perspective: 1000px;
  }
  
  .card__inner {
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
  }
  
  
  .card__inner.is-flipped {
        transform: rotateX(180deg);
   }
  
  
  .card__face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 3px 18px 3px rgba(0, 0, 0, 0.2);
  }
  
  .card__face--front {
    background-image: linear-gradient(to bottom right, var(--primary), var(--secondary));
    /*display: flex;*/
    text-align: center;
    /*align-items: center;
    justify-content: center;*/
    margin-bottom: 5px;
    

  }
  
  .card__face--front h2 {
    color: #FFF;
    font-size: 32px;
    padding: 30px 30px 20px;
  }

  .card__inner__header {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom left, var(--primary) 10%, var(--secondary) 115%);
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
  }
  
  
  .card__face--back {
    background-color: var(--light);
    transform: rotateX(180deg);
  }
  
  .card__content {
    width: 100%;
    height: 100%;
  }
  
  .card__header {
    position: relative;
    padding: 30px 30px 40px;
  }
  
  .card__header:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom left, var(--primary) 10%, var(--secondary) 115%);
    z-index: -1;
    border-radius: 0px 0px 0px 0px;
  }
  
  .pp {
    display: block;
    width: 128px;
    height: 128px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background-color: #FFF;
    border: 5px solid #FFF;
    object-fit: cover;
  }
  
  .card__header h2 {
    color: #FFF;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    /*padding: 30px 30px 40px;
    position: relative;*/
  }
  
  .card__body {
    padding: 30px;
  }
  
  .card__body h3 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .card__body p {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.4;
  }

  /* FORM */
   
  .box input[type = "text"]{
    border:0;
    background: white;
    display: block;
    margin: 20px auto;
    text-align: center;
    /*border: 2px solid #3498db;*/
    padding: 14px 10px;
    width: 450px;
    height: 130px;
    outline: none;
    color:black;
    border-radius:24px;
    transition: 0.25s;
    /*overflow-wrap: break-word;*/
   }

    .box input[type = "text"]:focus {
        width: 500px;

    }
    
    
 
  
    .submit {
    border:0;
    background:none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid white;
    padding: 14px 10px;
    outline: none;
    color: white;
    border-radius:24px;
    transition: 0.25s;
    cursor: pointer;
    width: 200px;
   }
  
   .submit:hover{
       background: white;
       color: black;
   }
 

