@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
html {
    --background: #14171c;
}
body {
    padding: 0;
    margin: 0;
    background-color: var(--background);
    overflow: hidden;
}
#container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
#content {
    width: 30vw;
    height: 50vh;
    box-shadow: 0 0 1em rgba(197, 206, 35, 0.3);
    border: 2px solid white;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 10px;
}
form {
    box-sizing: border-box;
    position: relative;
    height: 100%;
}
h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    color: white;
    padding: 0;
    margin: 0;
}
hr {
    margin-top: 20px;
    margin-bottom: 20px;
}
input {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 5px;
    box-shadow: 0 0 1em rgba(255, 255, 255, 0.2);
    height: 35px;
    color: white;
    font-family: "Montserrat", sans-serif;
    padding: 2px;
    padding-left: 10px;
    box-sizing: border-box;
}
#buttonDiv {
    position: absolute;
    bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    height: 30px;
}
#buttonDiv div {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    height: 30px;
}
#zurueckButton {
    position: absolute;
    left: 0;
    background-color: darkgray;
    border: 2px solid darkgray;
    border-radius: 7px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    cursor: pointer;
    box-shadow: 0 0 1em rgba(255, 255, 255, 0.2);
    font-family: "Montserrat", sans-serif;
}
#submitButton {
    position: absolute;
    right: 0;
    background-color: #C5CE23;
    border: 2px solid #C5CE23;
    border-radius: 7px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    cursor: pointer;
    box-shadow: 0 0 1em rgba(255, 255, 255, 0.2);
    font-family: "Montserrat", sans-serif;
}
#error1 {
    color: red;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
}
#error0 {
    color: #C5CE23;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
}
@media only screen and (max-width: 1330px) {
  #content {
    width: 95%;
  }
}