body {
    margin: 0px;
    font-family: 'Inter', sans-serif;
}
.index-wrapper {
    background-color: #bcd7ee;
    height: 100vh;
    width: 100vw;
    position: relative;
}

h1 {
    margin: 0% 0% 1% 0%;
    font-size: 140%;
    font-weight: 600;
    text-align: center;
    width: 95%;
    color: #363c40;
}

#form-container {
    position: absolute;
    background-color: #fff;
    padding: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 45rem;
    width: 25rem;
    height: 20rem;
    max-height: 45rem;
    border-radius: .5rem;
    filter: drop-shadow(0 0 0.75rem #79a9d1);
}

#form-container #form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 15rem;
    margin: 2.5rem 0rem;
}

#form-container input {
/*    width: 95%;*/
    padding: .8rem;
    margin: 0;
    border-radius: .2rem;
    border: 1px solid #d9d9d9;
}

.full-width{
    width: 100%;
    border-radius: .2rem;
}


