﻿.training {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 60px 0;
}

.H1Title {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 50px; /* adjust value as needed */
}

.coin-title {
    font-size: 132px;
    font-weight: 700;
    margin-bottom: 5px;
    padding-bottom: 5px;
    position: relative;
    text-align: center;
    color :cadetblue
}

.video-preview {
    font-family: Arial, sans-serif;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    max-width: 860px; /* wider than before */
    width: 100%;
    text-align: center;
    margin: 30px auto;
}

    .video-preview h1 {
        font-size: 22px; /* bigger title */
        margin-bottom: 16px;
        color: #222;
    }

    .video-preview iframe {
        width: 100%;
        height: 480px; /* taller video */
        border: none;
        border-radius: 10px;
    }

    .video-preview a {
        display: inline-block;
        margin-top: 16px;
        padding: 10px 18px;
        background: #ff0000;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        font-size: 16px;
    }

        .video-preview a:hover {
            background: #cc0000;
        }


.styled-textarea {
    width: 100%;
    min-height: 80px;
    max-width: 90%; /* keep it from stretching too wide */
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 12px; /* smooth rounded corners */
    font-size: 15px;
    line-height: 1.5;
    resize: none;
    overflow: hidden;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    margin: 8px 0;
}

    /* subtle highlight on focus */
    .styled-textarea:focus {
        border-color: #4a90e2;
        background: #fff;
        outline: none;
        box-shadow: 0 0 6px rgba(74,144,226,0.5);
    }

.form-label {
    display: block; /* make sure it sits on top */
    margin-bottom: 6px; /* spacing between label and textbox */
    font-weight: 600; /* keep the bold style */
    color: #333; /* optional, cleaner color */
}