.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Gill Sans", sans-serif;
}

.popup h1{
    margin: 10px 0;
}


.popup-content {
    width: 400px;
    padding: 0 30px;
    border-radius: 20px;
    font-size: x-large;
}

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

#problem {

    color: red;
    font-size: 16px;
    margin: 0;
}


.form-group input {
    width: 100%;
    padding: 1px 1px 1px 10px;
    border-radius: 15px;
    box-sizing: border-box;
    height: 56px;
    border: solid #cbd2dc88 2px;
    font-size: 18px;
}




.downbutton {
    margin: 30px auto;
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 50px;
    font-size: 20px;
    margin-bottom: 0;
}

.downbutton:hover {
    background-color: #ffffff;
    color: #000000;
    border: #000000 solid;
}


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

