html {
    height: 100%;
}

body {
    background-color: #1b1b28;
    min-height: 110%;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    padding-top: 10px;
}

svg {
    width: 100%;
    position: absolute;
    bottom: -28%;
    left: 0;
}

form {
    color: rgb(255, 201, 39);
    display: block;
    width: 35%;
    height: 80vh;
    margin: 35px auto 20px auto;
    text-align: center;
    background-color: #2d2d3c;
    overflow-y: scroll;
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0px 0px 7px rgb(10, 10, 17);
}

::-webkit-scrollbar {
    display: none;
  }

.container {
    width: 70%;
    margin: auto;
}

.form-title {
    font-weight: 800;
    font-size: 42px;
}

.text-label {
    color: whitesmoke;
    font-weight: inherit;
    display: block;
    margin-bottom: 20px;
}

.text {
    color: whitesmoke;
    background-color: #4a4a62;
    transition: 0.2s;
    border: none;
    border-radius: 5px;
    font-size: 25px;
    padding: 9px 15px;
    margin-bottom: 70px;
    width: 90%;
    max-width: 400px;
}

.text:hover {
    background-color: #424259;
    transition: 0.2s;
}

span {
    color: rgb(242, 72, 72);
}

.file::file-selector-button {
    padding: 14px 18px;
    margin-right: 16px;
    background-color: #4a4a62;
    border: none;
    border-radius: 6px;
    color: whitesmoke;
    transition: 0.3s;
}

.file::file-selector-button:hover {
    background-color: #39394d;
    transition: 0.3s;
}

.file {
    margin-top: 10px;
    margin-left: 20%;
    margin-bottom: 25px;
    font-size: 25px;
    color: whitesmoke;
}

#submit {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 40px;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    background-color: rgb(255, 201, 39);
    color: black;
    transition: 0.3s;
}

#submit:hover {
    scale: 1.1;
    background-color: rgb(223, 168, 3);
    transition: 0.3s;
}