body {
    font-family: Arial, Helvetica, sans-serif;
}

.requiredItem::after {
    content: "*";
    color: red;
}
.requiredItem::first-letter {
    color: red;
}

.submitButton {
    background-image: linear-gradient(#dedede, rgb(25, 150, 0));
}

.submitButton:hover {
    background-image: linear-gradient(rgb(25, 150, 0), #dedede);
    cursor: pointer;
}

.resetButton {
    background-image: linear-gradient(#dedede, rgb(255, 3, 3));
    margin-right: 2em;
}

.resetButton:hover {
    background-image: linear-gradient(rgb(255, 3, 3), #dedede);
    cursor: pointer;
}

.alignToCenter {
    font-family: Arial, Helvetica, sans-serif;
    width: max-content;
    margin: auto;
    padding: 5px;
}

.selectTitleType {
    height: 30px;
    background-color: rgb(255, 255, 255);
    font-weight: 700;
    border: 2px solid transparent;
    margin: 5px;
}

/*detail subpages----------------*/

.contentWrapper {
    margin-top: 2em;
    height: fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    border: 1px solid rgb(217, 217, 217);
    background-color: rgb(220, 232, 232);
    box-shadow: 0 0 5px 5px rgb(214, 214, 214);
}

.formWrapper {
    width: 99vw;
    height: 300px;
    display: flex;
    justify-content: center;
}

.inputForm {
    display: flex;
    justify-content: center;
    margin: 50px;
    width: 370px;
    height: 550px;
    background-color: rgb(220, 232, 232);
}

.inputText {
    padding: 5px;
    width: 300px;
    margin-bottom: 30px;
    background: transparent;
    border: 1px solid #a4a3a3;
}

h2 {
    margin-left: 20px;
}

input::placeholder {
    color: #757575;
}

input:focus {
    outline: none;
}

.submit {
    box-shadow: inset 0px 0px 16px 0px #a4e271;
    background: linear-gradient(to bottom, #89c403 5%, #77a809 100%);
    background-color: #89c403;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #528009;
}

.submit:hover {
    background: linear-gradient(to bottom, #77a809 5%, #89c403 100%);
    background-color: #77a809;
}

.register {
    background: linear-gradient(to bottom, #4f89ff, #0343c4);
    background-color: #89c403;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #528009;
}

.register:hover {
    background: linear-gradient(to bottom, #0343c4, #4f89ff);
}

.delete {
    box-shadow: inset 0px 0px 16px 0px #e27171;
    background: linear-gradient(to bottom, #bd4e4e 5%, #a80909 100%);
    background-color: #c40303;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #800909;
}

.delete:hover {
    background: linear-gradient(to bottom, #a80909 5%, #c40303 100%);
    background-color: #a80909;
}

.titlePictures {
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.titlePictures img {
    width: 400px;
    height: 400px;
    margin: 2em;
}
/*----------------detail subpages*/
