button {
    font-size: 1.25rem;
    padding: 0.5125rem 0;
    cursor: pointer;
    border-radius: 0.5125rem;
    border: none;
    box-shadow: none;
    font-weight: bold;
    box-shadow: 0.5125rem 0.5125rem 0.33rem 0 rgba(0, 0, 0, 0.1);
    width: clamp(140px, 100%, 200px);
}

button.primary {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-bottom: 0.66rem;
}

button.primary-reverse {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-bottom: 0.66rem;
}

button.primary:disabled {
    background: none;
    background-color: #ccc;
    color: white;
    cursor: not-allowed;
    border: 2px solid #ccc;
}

button.primary-reverse:disabled {
    background: var(--primary-color);
    border: 2px solid #ccc;
    color: white;
    margin-bottom: 0.66rem;
    cursor: not-allowed;
}

button.primary:hover:not(:disabled) {
    border: 2px solid white;
}

button.primary-reverse:hover:not(:disabled) {
    border: 2px solid white;
}

button.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-bottom: 12px;
}

button.secondary:hover:not(:disabled) {
    border: 2px solid white;
}

.three-buttons-container>div {
    text-align: center;
}

@media (min-width: 768px) {
    .three-buttons-container>div:nth-child(1) {
        text-align: end;
    }

    .three-buttons-container>div:nth-child(2) {
        text-align: center;
    }

    .three-buttons-container>div:nth-child(3) {
        text-align: start;
    }
}

@media (max-width: 380px) {
    button {
        padding: 0.5125rem 1.8rem;
    }
}