﻿
:root {
    --primary-color: #4e73df;
    --primary-dark: #2e59d9;
    --primary-light: #7a8ee8;
    --secondary-color: #858796;
    --success-color: #1cc88a;
    --danger-color: #e74a3b;
    --warning-color: #f6c23e;
    --light-color: #f8f9fc;
    --dark-color: #5a5c69;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fc;
    color: #333;
    overflow-x: hidden;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2a3f5491;
    z-index: 1;
}

.content {
    z-index: 2;
}

.form-container {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    display: none;
    margin: 0 auto;
}

    .form-container.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

.input-group-text {
    background-color: #f8f9fc;
    border-right: none;
}

.form-control {
    border-left: none;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #ced4da;
    }

.toggle-password {
    border-left: none;
    background-color: #f8f9fc;
}

    .toggle-password:hover {
        background-color: #e9ecef;
    }

.password-strength .progress-bar {
    transition: width 0.3s ease;
}

.otp-digit {
    font-size: 1.25rem;
    height: 3rem;
    padding: 0.5rem;
}

    .otp-digit:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
    }





@@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px rgba(75, 183, 27, 0);
    }
}

/* Countdown animation */
#countdown {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Responsive adjustments */
@@media (max-width: 991.98px) {
    .content {
        padding: 1.5rem;
    }

        .content h1 {
            font-size: 2rem;
        }

        .content p.lead {
            font-size: 1rem;
        }

    .form-container {
        padding: 1.25rem;
    }
}

@@media (max-width: 767.98px) {
    .row.min-vh-100 {
        flex-direction: column;
    }

    .col-lg-6 {
        /*  min-height: 50vh; */
    }

    .content {
        text-align: center;
        padding: 1rem;
    }

        .content h1 {
            font-size: 1.75rem;
            margin-bottom: 1rem !important;
        }

    .otp-digit {
        height: 2.5rem;
        font-size: 1rem;
    }

    
}

@@media (max-width: 575.98px) {
    .otp-digit {
        height: 2.25rem;
        font-size: 0.9rem;
    }

    .form-container {
        padding: 1rem;
    }
}

