@import url("https://fonts.googleapis.com/css2?family=Kanit&family=Noto+Sans&display=swap");

@media (max-width:600px) {
    .form-wrapper {
        justify-content: center;
        width: 100%;
        padding: 0;
    }

    .m-form {
        width: 90%;
    }

    .form {
        align-items: center;
    }

    .nav {
        justify-content: center;
        align-items: center;
        position: fixed;
    }

    .img > img {
        padding-left: 0;
        padding-top: 0;
        height: 23px;
    }

    .img-container > img {
        width: 400vw;
    }
}

* {
    padding: 0;
    margin: 0;
    font-family: "Noto Sans", sans-serif;
}

body {
    height: 100vh;
    width: 100%;
}

.img-container {
    height: 100vh;
    position: fixed;
    z-index: 1;
}

    .img-container > img {
        height: 100%;
        position: fixed;
        z-index: inherit;
        width: 100%;
    }

.site {
    position: relative;
    z-index: 5;
}

.img > img {
    height: 33px;
    padding-top: 10px;
    padding-left: 30px;
}


.img-lib > img {
    border-radius: 50%;
    height: 100px;
}

.nav {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
}

.form-wrapper {
    height: 90vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10vw;
}

#formcss {
    border: .5px solid rgb(7, 7, 7);
    height: 600px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px grey;
    background-color: white;
}

.form {
    width: 500px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heading {
    font-size: 1.7rem;
    text-align: center;
}

.form > .heading {
    padding-bottom: 40px;
    font-size: 30px;
    font-weight: bold;
}

.m-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contain {
    display: flex;
    justify-content: flex-start;
    width: 70%;
    padding: 5px;
}

.input {
    width: 70%;
    height: 40px;
    padding-left: 5px;
    border-radius: 5px;
    border: .5px solid grey;
}

.button {
    width: 25%;
    margin: 25px;
    margin-bottom: 7px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid rgb(255, 216, 108);
    font-size: 1.05rem;
    cursor: pointer;
    background-color: rgb(255, 216, 108);
    transition: all 0.5s ease;
}

    .button:hover {
        background-color: rgb(255, 187, 0);
        box-shadow: 0px 0px 10px rgb(255, 187, 0);
    }

a {
    font-size: .8rem;
    text-decoration: none;
    color: black;
}
