﻿
.progress-container {
    width: 100%;
    max-width: 700px;
    margin: 25px auto;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-family: "Vazir", sans-serif;
}

.progress-label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    text-align: right;
    font-size: 16px;
}

.progress {
    width: 100%;
    height: 20px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 10px;
}


.question-card {
    background: #e5fcff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

    .question-card h3 {
        margin-bottom: 20px;
        font-size: 20px;
        color: #333;
    }

.input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

input[type="text"],
input[type="file"],
select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

    input[type="text"]:focus,
    select:focus {
        outline: none;
        border-color: #6c63ff;
        box-shadow: 0 4px 12px rgba(108, 99, 255,0.2);
    }

input[type="file"] {
    cursor: pointer;
}


.actions {
    display: flex;
    justify-content: space-between;
}

.btn {
    /*background: linear-gradient(135deg,#6a11cb,#2575fc);*/
    background:#113da3;
    color: #fff;
    padding: 10px 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
}

    .btn:hover {
        transform: scale(1.05);
    }
.text-danger {
    color: red;
    font-size: 13px;
    display: block;
}

.submit {
    background: linear-gradient(135deg,#28a745,#218838);
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
  
}
