/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 27 2026 | 00:50:51 */
/* 1. フォームの外枠（プラグインの専用クラスなど）の制限を解除して中央に寄せる */
form.wpuf-form-add, 
.wpuf-form-container, 
.wpuf-form,
.wpuf,
.wpuf-login-form {
 max-width: 900px !important; /* 好みの横幅（900px〜1200px等）に変えられます */
 width: 100% !important;
 margin-left: auto !important;
 margin-right: auto !important;
 margin-bottom: 60px !important; /* フォームとフッターの間に60pxの隙間を作ります */
 float: none !important; /* 左寄せの回り込みを解除 */
}



/* 2. WP User Frontend自体のフォーム要素を横いっぱいに広げる */
form.wpuf-form-add, 
.wpuf-form-container, 
ul.wpuf-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 3. 入力項目やラベルの横幅も連動して広げる */
.wpuf-form li .wpuf-fields {
    width: 100% !important;
    max-width: 100% !important;
}



