button {
    height: 48px;
    background: var(--color-primary);
    color: var(--color-text-secondary);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.btn1 {
    width: 10rem;
    justify-self: center;
}

.btn2 {
    width: 100%;
    justify-self: center;
}

button:hover {
    background: none;
    color: var(--color-text);
    border-width: 1px;
    border-style: solid;
    border-color: #5da2d5;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}