@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300&display=swap');
:root {
    --color-background: #fae3ea;
    --color-primary: #fc8080;
    --font-family-base: Poppin, sans-serif;
    --font-size-h1: 1.25rem;
    --font-size-h2: 1rem;
  }
  
  
  * {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
  }
  
  html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  body {
    background-color: #fae3ea;
    background-color: var(--color-background);
    display: grid;
    font-family: Poppin, sans-serif;
    font-family: var(--font-family-base);
    line-height: 1.5;
    margin: 0;
    min-height: 100vh;
    padding: 5vmin;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
    place-items: center;
  }
  
.container{
    background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbf6f7), to(#fff));
  background-image: -o-linear-gradient(top, #fbf6f7, #fff);
  background-image: linear-gradient(to bottom, #fbf6f7, #fff);
  border-radius: 2em;
  height: auto;
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.0625);
          box-shadow: 0 0 1em rgba(0, 0, 0, 0.0625);
  width: 375px;
  /* overflow: auto; */
  padding: 2em;
}
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            font-family: 'Exo 2', sans-serif;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
  }
  h1 {
    /* font-size: 1.25rem; */
    /* font-size: var(--font-size-h1); */
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5em;
  }
  .form {
    display: grid;
    grid-gap: 0;
    gap: 0;
  }
  p{
    color:red;
  }
  input,select{
      padding:5px;
      border:0;
      border-radius: 6px;
      outline:none;

  }