/**
 * トライアル申込フォーム用CSS
 * アカウント名重複チェックのスタイリング
 */

/* メインコンテナのレイアウト */
.trial-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.trial-left-section {
    flex: 1;
    max-width: 500px;
}

.trial-form-box {
    flex: 1;
    max-width: 500px;
}

/* バナー部分 */
.trial-banner {
    text-align: center;
    margin-bottom: 30px;
}

.trial-banner-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    display: inline-block;
}

/* モニター画像 */
.trial-img-box {
    text-align: center;
    margin-bottom: 30px;
}

.trial-img-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 特徴アイテム */
.trial-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ffd700;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-right: 12px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ffd700;
    color: #333;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* 説明文 */
.trial-description {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.trial-description p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 15px;
}


/* 入力フィールドの注意書き */
.input-note {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* 完了ページのスタイリング */
.complete-message {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 40px 0;
}

.complete-icon {
    margin-bottom: 20px;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 50%;
    font-size: 40px;
    font-weight: bold;
}

.complete-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.complete-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.next-steps {
    text-align: left;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.next-steps h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.next-steps ol {
    margin: 0;
    padding-left: 20px;
}

.next-steps li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1976d2;
    margin: 0 0 15px 0;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-details {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #1976d2;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.action-buttons .btn-border {
    min-width: 200px;
}



/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .trial-wrap {
        flex-direction: column;
        gap: 40px;
    }
    
    .trial-left-section,
    .trial-form-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .trial-wrap {
        gap: 30px;
        margin-top: 30px;
    }
    
    .trial-banner-title {
        font-size: 20px;
        padding: 12px 16px;
    }
    
    .feature-item {
        padding: 10px 14px;
        margin-bottom: 12px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .trial-description {
        padding: 16px;
    }
    
    .trial-description p {
        font-size: 14px;
    }
    

    
    .username_check_result {
        font-size: 13px;
    }
}
