/* #region ボタングループ */
.button-group {
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 20px;
    text-align: center;
}

/* #endregion */

/* #region 登録ボタン */
.submit-button {
    background: #DC0714;
    color: white;
    border: none;
    padding: 16px 60px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 7, 20, 0.3);
}

.submit-button:hover {
    background: #b80512;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 7, 20, 0.4);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(220, 7, 20, 0.3);
}

/* #endregion */

/* #region セカンドボタン */
.secondary-button {
    background: white;
    color: #DC0714;
    border: 2px solid #DC0714;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.secondary-button:hover {
    background: #DC0714;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 7, 20, 0.3);
}

/* #endregion */

/* #region 戻るボタン */
.back-button {
    background: white;
    color: #333;
    border: 2px solid #333;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.back-button:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-button:active {
    transform: translateY(0);
}

/* #endregion */

/* #region レスポンシブデザイン */

@media (max-width: 768px) {
    .submit-button {
        width: 100%;
        padding: 14px 40px;
    }

    .back-button{
        width: 100%;
        min-width: auto;
        padding: 14px 40px;
    }

}
/* #endregion */
