@media screen and (max-width: 3840px) {
    body {
        margin-left: 96px;
        margin-right: 96px;
    }

    .input {
        width: 90%;
    }

    .h1 {
        font-size: 42px;
        margin-top: 10%;
        text-align: center;
        justify-content: center;
        display: flex;
        padding: 0 20px;
    }

    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
}

@media screen and (max-width: 1339px) {
    body {
        margin-left: 60px;
        margin-right: 60px;
    }

    .input {
        width: 90%;
    }
}

@media screen and (max-width: 1023px) {
    body {
        margin-left: 40px;
        margin-right: 40px;
    }

    .input {
        width: 90%;
    }
}

@media screen and (max-width: 767px) {
    body {
        margin-left: 28px;
        margin-right: 28px;
        justify-content: center;
    }

    .input {
        width: 100%;
    }

    #primarybutton {
        width: 100%;
    }

    .h1 {
        font-size: 38px;
        
    }

}

@media screen and (max-width: 374px) {
    body {
        margin-left: 16px;
        margin-right: 16px;
        font-size: smaller;
        justify-content: center;
    }

    .input {
        width: 100%;
    }

    #primarybutton {
        width: 100%;
    }
    .h1 {
        font-size: 30px;
        
    }

    .main {
       width: 80%;
       margin: 0 auto;
    }
}

.logout {
    font-size: 18px;
    font-weight: bold;
}

body {
    overflow: hidden;
    margin: 0;

}

button {
    border-radius: 0;
}





#primarybutton {
    position: relative;
    text-align: center;
    font-size: 24px;
    padding: 15px;
    color: white;
    background-color: #000000;
    cursor: pointer;
    border-color: #000000;
    border-width: 1px;
    outline: none;
    font-family: audi_typewide_normal;
    line-height: 1.5;
    margin-top: 15px;
}

#primarybutton:hover {
    transition: 0.5s;
    opacity: 0.6;
}



a {
    background-color: none;
    display: block;
}

a:active,
a:link,
a:visited {
    color: #000000;
    text-decoration: none;
}

a:hover {
    transition: 0.5s;
    opacity: 0.6;
    color: #666666;
}

.input-group {
    margin-top: 10px;
    position: relative;
    display: flex;
    background-color: ;
    align-content: flex-start;
    flex: 1;
}

.input {
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    font-size: large;
}

.input-label {
    position: absolute;
    left: 3px;
    pointer-events: none;
    transform: translateY(-20%);
    transition: cubic-bezier(0.4, 0, 0.2, 1);

}

.input:focus~label,
input:valid~label {
    transform: translateY(-100%) scale(0.8) translateX(-10%);
}

.input:focus,
input:valid {
    outline: none;

}

.input:focus {
    transition: 0.5s;
    border-bottom: 2px solid black;
    transition-property: width;
    transition-duration: 2s;
    transition-timing-function: linear;
    transition-delay: 1s;
}

.text{
    font-weight: bold;
}