/* static/css/proposal_form.css に追加 */

/* TOP画面用のセクションスタイル */

.proposal_form {
    background: linear-gradient(135deg, white, rgb(200, 200, 200) 100%);
    border-radius: 36px;
    padding: 24px;
}
.proposal-section .container {
    
    max-width: 720px;
    margin: 0 auto;
}

.proposal-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.proposal_form__icatch {

    width: 100%;
    max-width: 620px;
    margin: 0 auto 24px auto;
    display: block;
}

.proposal-section .section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
}

.proposal-form-container {
    
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}



.proposal_form__header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #ecf0f1;
}

.proposal_form__title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.proposal_form__description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* ラベル番号を探偵らしく */
.proposal_form__label-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 50%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 12px;
    margin-left: 8px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.proposal_form__field {
    margin-bottom: 24px;
    text-align: center;
    max-width: 100%;
}

/* 送信ボタンをさらに目立たせる */
.proposal_form__submit {
    
    align-items: center;
    gap: 12px;
    padding: 18px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: radial-gradient( #667eea 0%, #764ba2 100%);
    border-color: rgb(39, 21, 133);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    text-transform: none;
    width: 720px;
    max-width: 100%;
    
    margin: 24px auto;
    max-width: 90%;
    text-align: center;
    display: flex;
    justify-content: center;
    
}

.proposal_form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}

.proposal_form__submit:active {
    transform: translateY(-1px);
}

.proposal_form__submit-icon {
    font-size: 28px;
    animation: pulse 2s infinite;
}

.proposal_form__input,
.proposal_form__select,
.proposal_form__textarea {
    background: #ffffff;
    border-color: #4a5f7f;
    color: #000000;
    resize: none;
    height: 120px;
    width: 720px;
    max-width: 100%;
    margin: 8px auto;
    padding: 24px 16px;
    border-radius: 16px;
}

.proposal_form__input:focus,
.proposal_form__select:focus,
.proposal_form__textarea:focus {
    border-color: #667eea;
    background: #fbfbfb;
    padding: 24px 16px;
}

.proposal_form__required {
    color: red;
}

.proposal_form__note {
    color: rgb(22, 22, 22);
    margin: 0 auto;
    max-width: 100%;
    text-align: center;

}

.proposal_form__sample-actions {
    margin: 24px auto;
    padding: 24px;
    border-radius: 48px;
    max-width: 100%;
    text-align: center;
    font-size: 1.5em;
    background: radial-gradient( #a980d2 0, #2626c7 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    
    
}
.proposal_form__sample-actions > a {
    color: white;
    text-decoration: none;
}
.proposal_form__sample-actions:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}



@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    
    .proposal-section {
        padding: 60px 16px;
    }
    
    .proposal-form-container {
        padding: 32px 20px;
        border-radius: 12px;
    }
    
    .proposal-section .section-title {
        font-size: 28px;
    }
    
    .proposal-section .section-description {
        font-size: 16px;
    }
    
    .proposal_form__title {
        font-size: 24px;
    }
    
    .proposal_form__submit {
        width: 100%;
        font-size: 18px;
    }
}


