@import url("constants.css");
body {
    font-family: Helvetica, sans-serif;
    background-color: rgb(120, 0, 0);
    background: var(--main-backrgound-gradient);
    font-size: 15px;
}

#menu {
    position: fixed;
    background-color: rgb(249, 104, 74);
    color: rgb(52, 0, 0);
    z-index: 10;
    bottom: 0;
    padding: 2vw;
    box-shadow: 0px 3px 12px 3px rgb(120, 0, 0);
    width: 210px;
    right: 0;
    font-family: Helvetica;
}
a {
    color: black;
}

input,
textarea {
    width: 100%;
}

input[type="radio"] {
    width: 30;
}

input[type="checkbox"] {
    width: 30;
}

input[type="file"] {
    width: 300;
}

form {
    position: relative;
    background-color: var(--textbox-background-color);
    padding: 3vw;
    width: 45vw;
    left: 24.5vw;
    top: 3vw;
    border-bottom: 3vw solid rgb(120, 0, 0);
    box-shadow: 30px 3px 120px 3px rgb(120, 0, 0);
}

#title-add {
    text-align: center;
    box-shadow: 0px 3px 12px 3px rgb(120, 0, 0);
    padding: 15px;
    background-image: radial-gradient(circle, rgba(255, 104, 54, .5) 39%, rgba(239, 255, 166, .5) 100%);

}

#cost-field {
    display: none; /* Hidden by default */
    margin-top: 10px;
}

#notes {
    box-shadow: 0px 3px 12px 3px rgb(120, 0, 0);
    padding: 15px;
    /* background-image: radial-gradient(circle, rgba(255, 104, 54, .5) 39%, rgba(239, 255, 166, .5) 100%); */
}

#caution {
    box-shadow: 0px 3px 12px 3px rgb(120, 0, 0);
    padding: 15px;
}

.submit-btn {
    all: unset;
    box-shadow: 0px 3px 3px 3px rgb(202, 0, 0);
    border-radius: 50%;
    color: black;
    background-image: radial-gradient(circle,rgb(192, 0, 0) 0%, rgba(255, 104, 54, 1) 39%, rgba(239, 255, 166, 1) 100%);
    cursor: pointer;
    padding: 6vw;
    border: .3vw dashed red;
    transition: box-shadow 1.5s, border 1s, padding 1s;
    text-align: center;
    width: 32.4vw;

}

.submit-btn:hover {
    box-shadow: 6px -12px 180px 60px white;
    border: 3vw dotted rgba(239, 255, 166, 1);
    padding: 3.3vw;
}

.submit-tocal {
    all: unset;
    box-shadow: 0px 3px 3px 3px rgb(202, 0, 0);
    border-radius: 50%;
    color: black;
    cursor: pointer;
    padding: 3vw 6vw 3vw 6vw;
    border: .3vw dashed red;
    text-align: center;
    width: 32.4vw;
}

.submit-tocal:hover {
    box-shadow: 6px -3px 60px 3px white;
    /* border: .3vw dotted rgba(239, 255, 166, 1);  */
}

.another {
    background-color: white;
    right: 3vw;
    position: absolute;
    margin-top: .3vw;
    padding: .15vw;
    border-radius: 3px;
    font-size: 13.5px;
    border: 1px solid black;
}

.regbutton:hover {

    box-shadow: 0px 3px 3px 3px rgb(202, 0, 0);
}


.optional {
    background-image: radial-gradient(circle, rgba(255, 104, 54, .3) 39%, rgba(239, 255, 166, .3) 100%);
    padding: 30px;
}

#uploading {
    display: none;
    position: fixed;
    left:  20vw;
    top: 0vh;
    box-shadow: 0px 3px 3px 3px rgb(202, 0, 0);
    border-radius: 50%;
    color: black;
    background-image: radial-gradient(circle,rgb(192, 0, 0) 0%, rgba(255, 104, 54, .9) 60%, rgba(239, 255, 166, .9) 100%);
    text-align: center;
    width: 60vw;
    height: 100vh;
    font-size: 24px;
}

@media only screen and (max-width: 900px) {
    #menu {
        width: 96vw;
        right: none;
        left: 0;
    }

    form {
        width: 88vw;
        left: 2vw;
    }
}

