#dna {
    background-color: #ffffff;
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dna form {
    width: 32rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.13);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 107, 107, 0.1);
    box-shadow: 5px 5px 20rem rgba(0, 0, 0, 0.3);
}

#dna form * {
    font-family: 'Poppins', sans-serif;
    color: #4c4c4c;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

#dna form label {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
}

#dna form input {
    display: block;
    height: 4rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 5rem;
    font-size: 14px;
    font-weight: 300;
}

#dna form ::placeholder {
    color: #e5e5e5;
}

#dna form button {
    margin-top: 5rem;
    width: 100%;
    background-color: #ffffff;
    color: #7c7c7c;
    padding: 1rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: .5rem;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    #dna form {
        width: 90%;
        max-width: 26rem;
    }
}