:root {
    --primary: #003a8c;
    --primary-hover: #e54646;
    --accent: #f472b6;
    --background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.cont_ly{
    width: 100%;
    min-height: 100vh;
    background: url(../images/indfw_bg.jpg);
    background-size: cover;
}

.container2 {
    margin: -15px auto 0;
    width: 100%;
    max-width: 740px;
    padding: 2.5rem;
    border-radius: 1.5rem;
}

.container2 .header2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.container2 .header2 .title2{
    font-size: 3rem;
    color: #000;
}


.text-gray-500{
    margin-top: 5px;
    font-size: 15px;
}

.container2 .title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.container2 .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.container2 .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.5rem;
}

.container2 .form-label svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
}

.container2 input, textarea, select {
    width: 95%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container2 input:focus, textarea:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    outline: none;
}

.container2 .file-upload {
    border: 2px dashed #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8fafc;

    cursor: pointer;
}

.container2 .file-upload:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.03);

    cursor: pointer;
}

.container2 .upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;

    cursor: pointer;
}

.container2 .upload-icon {
    width: 2.5rem;
    height: 2.5rem;
    stroke: currentColor;
}

.container2 .submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.container2 .submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(241 99 99 / 30%);
}

.container2 .char-counter {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 640px) {
    .container2 {
        padding: 1.5rem;
    }

    .title {
        font-size: 1.75rem;
    }
}