/* フォーム関連スタイル - auth_forms.css */

/* フォーム要素 */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #fab515;
    box-shadow: 0 0 0 3px rgba(250, 181, 21, 0.1);
}

/* ヘルプテキスト */
.help-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}