html, body {
    /*height: 100%;*/
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body::-webkit-scrollbar {
    display: none;
}
.cover {
    background-color: black;
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.cover h1,p{
    margin: 0;
}

.cover p{
    letter-spacing : 3px;
}

.form-container {
    flex : 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    padding: 20px;
    width: 35%;
    font-size: x-large;
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-group input,select {
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    border: #000000 solid 1px;
    font-size: large;
}

.error {
    color: red;
    font-size: 0.7em;
}

.form-group select option{
    padding: 10px;
}



.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


.downbutton {
    margin: 30px auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    border: #ffffff solid;
    font-size: 22px;
}

.downbutton img{
    width: 22px;
    margin-left: 10px;
}

.downbutton:hover {
    filter: invert();
    border: #ffffff solid;
}

.about {
    justify-content: center;
    margin: 0;
    padding: 20px;
    background: #000000;
    color: white;
}

.about-content {
    display: flex;
    justify-content: space-between;
}

.about-content div {
    width: 45%;
    direction: lrt;
}

.about h2 {
    margin-top: 0;
}


/* Responsive design adjustments */
@media (max-width: 1200px) {
    .form-container {
        width: 45%;
        margin: 3% auto;
    }
}

@media (max-width: 900px) {
    .form-container {
        width: 55%;
        margin: 2% auto;
    }
}

@media (max-width: 670px) {
    .form-container {
        width: 95%;
        margin: 1% auto;
    }

}
