    :root {
        --primary-color: #004aad;
        --secondary-color: #f8f9fa;
        --border-color: #e2e8f0;
        --text-muted: #6c757d;
    }
    .page-content__header .title {
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }
    .title-underline {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), #00c6ff);
        border-radius: 2px;
    }
    .blood-bank-form-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Soft shadow */
        padding: 40px;
        border: 1px solid rgba(0,0,0,0.02);
    }
    .form-label {
        font-weight: 600;
        color: #444;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }
    .input-wrapper {
        position: relative;
    }
    .input-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #adb5bd;
        font-size: 1.1rem;
        transition: color 0.3s;
        z-index: 2;
    }
    .textarea-wrapper .input-icon {
        top: 20px; /* Adjust icon for textarea */
        transform: none;
    }
    .form-control {
        height: 52px;
        padding-left: 45px; /* Space for icon */
        border-radius: 10px;
        border: 1px solid var(--border-color);
        background-color: #fcfcfc;
        font-size: 1rem;
        color: #333;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    textarea.form-control {
        height: auto;
        padding-top: 15px;
    }
    .form-control:focus {
        border-color: var(--primary-color);
        background-color: #fff;
        box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1); /* Subtle focus ring */
    }
    .form-control:focus + .input-icon, /* This selector won't work as icon is before input in HTML usually, adjusting HTML order or CSS */
    .input-wrapper:focus-within .input-icon {
        color: var(--primary-color);
    }
    .submit-btn {
        background: var(--primary-color);
        border: none;
        border-radius: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
        font-size: 1.1rem;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .submit-btn:hover {
        background: #003d8f;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
    }
    /* Select arrow fix */
    select.form-control {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 16px 12px;
    }
    @media (max-width: 768px) {
        .blood-bank-form-card {
            padding: 25px;
        }
        
        .page-content__header {
            margin-bottom: 2rem !important;
        }
    }