.form {
    display: flex;
    flex-direction: column;
}

.input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    background-color: #fff;
    box-sizing: border-box;
}

.section {
    margin-bottom: 1rem;
    background-color: #ffffff;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    overflow: hidden;
    word-break: break-word;
    display: flex;
    flex-direction: column;
}

.climberEntry {
    border-bottom: 1px solid #ced4da;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    overflow: hidden;
    word-break: break-word;
    display: flex;
    flex-direction: column;
}

.registerButton {
    padding: 0.75rem;
    font-size: 1.1rem;
    background-color: #ADEA41;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    width: 200px;
}

.addButton,
.removeButton {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    padding: 0.5rem;
    color: white;
    background-color: var(--color-secondary);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 200px;
}

.removeButton {
    background-color: #dc3545;
}

.genderSelector button {
    flex: 1;
    padding: 0.75rem 1rem;
    min-width: 100px;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s;
    margin: 0 2px;
}


.genderSelector button.activeGender {
    background-color: #dff4b0;
    color: #1a1a1a;
    border-color: #ADEA41;
    font-weight: 600;
}

.climberEntry label {
    display: flex;
    flex-direction: column;
    padding: 0.25rem;
}

.genderSelector {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.25rem;
}


.alert {
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.alert-success {
    background-color: #e6ffed;
    border: 1px solid #34d399;
    color: #065f46;
}

.alert-error {
    background-color: #ffe6e6;
    border: 1px solid #f87171;
    color: #7f1d1d;
}

.labelInput {
    display: block;
    margin-top: 1rem;
}

.highlight {

    text-decoration: none;
    font-weight: 600;
}
.registration-disclaimer {
    margin-top: 2rem;
    line-height: 1.8rem;
}

.registration-disclaimer a {
    color: #2374ab;
    text-decoration: underline;
    font-weight: 600;
}

.notification-label {
    display: block;
    margin-bottom: 0.6rem;
}
