/* 登録フロー用統一ボタンスタイル */
.register-button {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    /* padding: 12px; */
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Googleボタン */
.social-button-google {
    background-color: #ffffff;
    color: #5f6368;
    border: 1px solid #dadce0;
}

/* LINEボタン */
a.social-button-a.social-button.social-button-line {
    background-color: #06C755;
    color: #FFFFFF;
    border: none;
}

/* Emailボタン */
a.social-button.email {
    background: var(--unit-color, #374165);
    color: white;
    border: none;
}

/* アイコンとテキストの配置 */
.social-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}



.social-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    background: #f8f9fa;
}

/* Googleボタン専用スタイル */
.social-button.google {
    background: white;
    color: #5f6368;
    border: 1px solid #dadce0;
}

.social-button.google:hover {
    background: #f8f9fa;
    border-color: #dadce0;
}
a.social-button {
    padding-left: 12px;
}
/* LINEボタン専用スタイル */
.social-button.line {
    background: #06C755;
    color: white;
    border: 1px solid #06C755;
}

.social-button.line:hover {
    background: #05b34a;
    border-color: #05b34a;
    color: white;
}

/* ログインオプション内のソーシャルボタン */
.login-option .social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
}

.login-option .social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}
