@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

body,
input,
button {
	font-family: 'Inter', sans-serif;
	background: #0f172a;
    color: #f8fafc;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

.background {
	padding: 60px 20px;
    min-height: 100vh;
    width: 100%;
    background: radial-gradient(circle at 15% 50%, rgba(79, 70, 229, 0.15), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15), transparent 25%);
    background-color: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-progress {
	background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	width: 100%;
    max-width: 800px;
    border-radius: 24px;
    overflow: hidden;
}

.container-progress .section-setup {
	background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
	color: white;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container-progress .section-setup h1 {
	font-size: 2rem;
    font-weight: 700;
	margin: 0;
    letter-spacing: -0.02em;
}

.progressbar-wrapper {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.3);
}

.progressbar {
	counter-reset: headings;
	list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.progressbar li {
	list-style-type: none;
	flex: 1;
	font-size: 13px;
    font-weight: 600;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	color: #64748b;
    letter-spacing: 0.05em;
    z-index: 1;
}

.progressbar li:before {
	width: 36px;
	height: 36px;
	counter-increment: headings;
	content: counter(headings, decimal);
	line-height: 32px;
	border: 2px solid #334155;
	display: block;
	text-align: center;
	margin: 0 auto 12px auto;
	border-radius: 50%;
	background-color: #1e293b;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.progressbar li:after {
	width: 100%;
	height: 2px;
	content: '';
	position: absolute;
	background-color: #334155;
	top: 17px;
	left: -50%;
	z-index: -1;
    transition: all 0.3s ease;
}

.progressbar li:first-child:after {
	content: none;
}

.progressbar li.active {
	color: #e2e8f0;
}

.progressbar li.active a {
	color: #e2e8f0;
    text-decoration: none;
}

.progressbar li a {
	color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.progressbar li a:hover {
    color: #94a3b8;
}

.progressbar li.active:before {
	border-color: #8b5cf6;
	background: #8b5cf6;
	color: white;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.progressbar li.active:after {
    background-color: #8b5cf6;
}

.setup-content {
    padding: 40px;
}

/* Custom List Group for requirements */
.custom-list-group {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-list-item {
    background: rgba(30, 41, 59, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5e1;
    font-size: 15px;
    transition: background 0.2s ease;
}

.custom-list-item:hover {
    background: rgba(30, 41, 59, 0.8);
}

.custom-list-item:last-child {
    border-bottom: none;
}

.custom-list-item p {
    margin: 0;
    font-weight: 500;
}

.icon-ok {
	color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;
}

.icon-remove {
	color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;
}

/* Form Controls */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #f8fafc !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    transition: all 0.2s ease !important;
}

.form-control:focus {
    background: rgba(15, 23, 42, 0.9) !important;
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2) !important;
    outline: none !important;
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.2) !important;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    color: white;
}

.btn-success {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-outline-danger {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f8fafc;
}

.btn-outline-danger:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f8fafc;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.alert {
    border-radius: 10px;
    border: none;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

@media screen and (max-width:768px) {
	.btn {
		display: block;
		width: 100%;
        margin-bottom: 10px;
	}
    .progressbar li {
        font-size: 11px;
    }
    .setup-content {
        padding: 20px;
    }
}

/* Loader */
.loader,
.loader:before,
.loader:after {
	background: #8b5cf6;
	-webkit-animation: load1 1s infinite ease-in-out;
	animation: load1 1s infinite ease-in-out;
	width: 1em;
	height: 4em;
}

.loader {
	color: #8b5cf6;
	text-indent: -9999em;
	margin: 88px auto;
	position: relative;
	font-size: 11px;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

.loader:before,
.loader:after {
	position: absolute;
	top: 0;
	content: '';
}

.loader:before {
	left: -1.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.loader:after {
	left: 1.5em;
}

@-webkit-keyframes load1 {
	0%, 80%, 100% { box-shadow: 0 0; height: 4em; }
	40% { box-shadow: 0 -2em; height: 5em; }
}

@keyframes load1 {
	0%, 80%, 100% { box-shadow: 0 0; height: 4em; }
	40% { box-shadow: 0 -2em; height: 5em; }
}