
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.woff') format('woff'),
         url('./fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
body {
    font-family: 'Gilroy', sans-serif;
    font-weight: 300;
    background-color: #f5f9f4;
    display: flex;    
    align-items: center;
    height: 548px;
    padding: 20px;    
    flex-direction: column;
}

.wrapper{
    display: flex;
    max-width: 450px;
    align-content: center;
    justify-content: center;
    background-color: white; 
    max-width: 470px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    box-shadow: 0 0 30px 0 rgba(6, 48, 4, 0.2);
    padding: 24px;
    flex-direction: column;
    align-items: center;
}

.wrapper h2 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 24px;   
}

.wrapper label {
    display: block;
}

.wrapper input {
    min-height: 40px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 12px;
    box-sizing: border-box;
    outline: none;
    cursor: text;
    font-size: 14px;
}

.wrapper button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 16px;
    background-color: #009659;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}