/* my/childrensignup.css */

#select-number-of-children {
    border: 1px solid gray;
    border-radius: 5px;
}

/* #select-number-of-children > span {...} => style priority too strong */
.number-btn {
    background-color: lightgray;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

#select-number-of-children > span:hover {
    background-color: cornflowerblue;
    color: white;
}

.selected {
    background-color: cornflowerblue;
    color: white;
}

.numbering {
    background-color: lightgray;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    border-radius: 5px;
    text-align: center;
}

h2, h3 {
    text-align: center;
}

#signup-check-btn {
    background-color: rgb(22, 154, 46);
    color: white;
    border: none;
    border-radius: 3px;
}

#signup-check-btn:hover {
    background-color: rgb(63, 168, 82);
}

#signup-btn {
    background-color: rgb(36, 83, 175);
    color: white;
    border: none;
    border-radius: 3px;
}

#signup-btn:hover {
    background-color: rgb(60, 108, 205);
}

#signup-cancel-btn {
    background-color: rgb(195, 51, 35);
    color: white;
    border: none;
    border-radius: 3px;
}

#signup-cancel-btn:hover {
    background-color: rgb(212, 67, 51);
}

#children-signup-form-section {
    max-width: 30rem;
}
