.button {
    display: inline-block;
    padding: 16px 32px;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.button:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#button__another-nursery {
    background-color: #725330;
    color: #ffffff;
}

#button__another-nursery:hover {
    background-color: #5f4a2a;
}

#button__another-nursery:active {
    background-color: #4a3a20;
}


#apply-button {
    width: 400px;
    padding: 36px;
    color: white;
    background-color: #FA9902;
    border-radius: 96px;
    font-weight: bold;
    font-size: 1.5rem;
}


#apply-button:hover {
    background-color: #FFB933;
}

#apply-button:active {
    background-color: #D97A00;
}

@media screen and (max-width: 768px) {
    #apply-button {
        width: 100%;
        padding: 24px;
    }
}