﻿
:root {
    --primary-color: #1c5894;
    --secondary-color: #449d00;
    --light-blue: #e3f2fd;
    --light-gray: #f8f9fa;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
}

.text-danger {
    color: red;
    font-size: 0.8rem;
    margin-bottom: 4px;
    display: block;
}

.error-summary {
    color: red;
    margin-bottom: 10px;
    font-size: 14px;
}

.btn-verify:disabled {

    cursor: not-allowed;
}
/*input.input-validation-error {
    border: 1px solid red !important;
}*/


.hidden {
    display: none !important;
}



/* Signup Progress */
.signup-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.progress-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ddd;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s;
}

    .progress-step.active {
        background: var(--primary-color);
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

.progress-line {
    flex: 1;
    height: 3px;
    background: #ddd;
    margin: 0 10px;
}

    .progress-line.active {
        background: var(--primary-color);
    }


@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
