/* #region フォームセクション */
.form-section {
    background: white;
}

.form-section-header {
    border-left: 4px solid #DC0714;
    padding-left: 15px;
    margin-bottom: 30px;
}

.form-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.form-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.registration-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #DC0714;
    box-shadow: 0 0 0 3px rgba(220, 7, 20, 0.1);
}

.form-input::placeholder {
    color: #aaa;
}

/* フォーム行（2列レイアウト） */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-group-half {
    flex: 1;
}

.form-label-empty {
    visibility: hidden;
}

/* #endregion */

/* #region パスワード入力 */
.password-input-wrapper {
    position: relative;
}

.password-input {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.password-toggle:hover {
    opacity: 0.7;
}

.password-toggle.active .eye-icon {
    position: relative;
}

.password-toggle.active .eye-icon::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    width: 28px;
    height: 2px;
    background: #666;
    transform: translateY(-50%) rotate(-45deg);
}

/* #endregion */


/* #region レスポンシブデザイン */
@media (max-width: 768px) {
    .form-section-header {
        padding-left: 12px;
    }
}
/* #endregion */