/* 企業データ利用会員フォーム専用スタイル */

/* フォーム入力フィールドの基本スタイル */
.apply-container .item input[type="password"],
.apply-container .item input[type="tel"] {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background-color: #fff;
    width: 100%;
    padding: 1rem 1.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* フォーカス時のスタイル */
.apply-container .item input[type="password"]:focus,
.apply-container .item input[type="tel"]:focus {
    outline: none;
    border-color: #0050AA;
    box-shadow: 0 0 0 3px rgba(0, 80, 170, 0.1);
}

/* プレースホルダーのスタイル */
.apply-container .item input[type="password"]::placeholder,
.apply-container .item input[type="tel"]::placeholder {
    color: #999;
    font-size: 1.3rem;
}

/* エラー時のスタイル */
.apply-container .item input[type="password"].error,
.apply-container .item input[type="tel"].error {
    border-color: #dc3545;
}

/* パスワード入力フィールドの特別なスタイル */
.apply-container .item input[type="password"] {
    font-family: Arial, sans-serif;
    letter-spacing: 0.1em;
}

/* 電話番号・FAX入力フィールドの特別なスタイル */
.apply-container .item input[type="tel"] {
    font-family: "Noto Sans JP", sans-serif;
}

/* コメント文のスタイル調整 */
.apply-container .cmt,
.mypage-container .cmt {
    color: #666;
    font-size: 1.3rem;
    display: block;
    margin-top: 0.5rem;
}

/* ラベル内のコメント文（パスワード要件など） */
.apply-container label .cmt,
.mypage-container label .cmt {
    color: #666;
    font-size: 1.2rem;
    font-weight: normal;
    display: block;
    margin-top: 0.3rem;
}

/* アラートメッセージの基本スタイル */
.apply-container .alert,
.mypage-container .alert,
.login-wrapper .alert {
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
}

/* 成功メッセージ */
.apply-container .alert-success,
.mypage-container .alert-success,
.login-wrapper .alert-success {
    background-color: #F0FFF4;
    border: 1px solid #BBEFC8;
    color: #27B662;
    box-shadow: 0 2px 8px rgba(39, 182, 98, 0.08);
    padding-left: 2rem;
}

.apply-container .alert-success::before,
.mypage-container .alert-success::before,
.login-wrapper .alert-success::before {
    content: "✓";
    position: relative;
    display: inline-block;
    margin-right: 0.8rem;
    font-size: 1.8rem;
    color: #27B662;
    vertical-align: middle;
}

/* お問い合わせフォーム確認画面のボタンレスポンシブ対応 */
@media (max-width: 768px) {
    .btn-box {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .btn-box form {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .btn-box .btns {
        width: 100% !important;
    }
}