main > h1 {
    margin: 0;
    padding: 4rem 0 2rem 0;
    text-align: center;
    font-family: 'Moret', sans-serif;
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 500;
    letter-spacing: 0.1rem;
}

main > p {
    text-align: center;
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    margin: 0;
    padding: 0 0 1.5rem 0;
}

main > form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#guestsInfo {
    padding: 1rem 0;
    max-width: 85%;
    width: 35rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guestInfo {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1px solid var(--color-pallet-2);
    border-radius: 0.5rem;
    padding: 1rem 1.2rem 1.2rem 1.2rem;
}

#guestsInfo > .guestInfo > div {
    display: flex;
    flex-direction: column;
}

main > form > #guestsInfo input {
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-sizing: border-box;
    border: 1px solid var(--color-pallet-2);
    background-color: white;
    color: var(--color-pallet-4);
}
main > form > #guestsInfo input[type="text"] {
    width: 100%;
}

main > form > #guestsInfo > .guestInfo label {
    margin-bottom: 0.5rem;
    font-family: 'Moret', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.03rem;
}

main > form > #guestsInfo > #addGuestButton {
    padding: 0.4rem 0.6rem;
    border-radius: 0.5rem;
    box-sizing: border-box;
    border: 2px solid var(--color-pallet-2);
    background-color: var(--color-pallet-2);
    color: var(--color-pallet-1);
    cursor: pointer;
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.15s ease;
    width: fit-content;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
}
main > form > #guestsInfo > #addGuestButton:hover {
    border: 2px solid var(--color-pallet-4);
    color: white;
}
main > form > #guestsInfo > #addGuestButton:hover .addSVG {
    fill: white;
}

main > form > #guestsInfo > #addGuestButton > .addSVG {
    width: 1.3rem;
    height: auto;
    fill: var(--color-pallet-1);
    margin-right: 0.5rem;
    transition: all 0.15s ease;
}

.guestInfo .removeGuestButton {
    all: unset;
    cursor: pointer;
    transition: all 0.15s ease;
    width: fit-content;
    align-items: center;
    align-self: flex-end;
    margin-bottom: -1.8rem;
}
.guestInfo .removeGuestButton svg {
    width: 2rem;
    height: auto;
    transition: all 0.15s ease;
}
.guestInfo .removeGuestButton svg * {
    fill: var(--color-pallet-2);
    transition: all 0.15s ease;
}
.guestInfo .removeGuestButton:hover svg * {
    fill: var(--color-pallet-4);
}

#guestsInfo > fieldset {
    border: 1px solid var(--color-pallet-2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 0;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 0.7rem;
}

#guestsInfo > fieldset label {
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
}

#guestsInfo > fieldset input[type="radio"] {
    height: 1rem;
    width: 1rem;
    cursor: pointer;
    accent-color: var(--color-pallet-2);
}

#guestsInfo > input[type="submit"] {
    padding: 0.6rem 2.5rem;
    border-radius: 0.5rem;
    box-sizing: border-box;
    border: 2px solid var(--color-pallet-2);
    background-color: var(--color-pallet-2);
    color: var(--color-pallet-1);
    cursor: pointer;
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 2rem;
    transition: all 0.15s ease;
}
#guestsInfo > input[type="submit"]:hover {
    border: 2px solid var(--color-pallet-4);
    color: white;
}

@media (max-width: 768px) {
    
}