  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f4f8;
            padding: 20px;
        }
		
		input{text-transform: uppercase;}
		select{text-transform: uppercase;}

        .container {
            width: 100%;
            max-width: 1000px;
            min-height: 600px;
            display: flex;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            overflow: hidden;
			margin-top: 50px;
        }

        .sidebar {
            width: 300px;
            background: #0071ce5e;
            padding: 40px 30px;
            position: relative;
        }

        .main-content {
            flex: 1;
            padding: 40px;
            background: white;
        }

        .progress-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 60px;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .step-item.active {
            background: #ffe1ee;
			background: #0071ce5e;
        }

        .step-number {
            width: 35px;
            height: 35px;
            border-radius: 10px;
            background: #0071ce5e;
            color: #FFF;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .step-item.completed .step-number {
            background: #3800ff;
            color: white;
        }

        .step-text {
            font-weight: 500;
            color: #666;
        }

        .step-item.active .step-text {
            color: #3800ff;
            font-weight: 600;
        }

        .form-container {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .step-title {
            font-size: 28px;
            color: #2d3748;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 25px;
			
			margin-bottom: 5px;
            border: 1px solid SILVER;
            padding: 5px;
			border-radius: 10px;
        }

        .form-group label {
            display: block;
            margin-bottom: 1px;
            font-weight: 500;
            color: #4a5568;
            font-size: 15px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px;
            border: 2px solid #edf2f7;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #ffb6d3;
            background: white;
            outline: none;
        }

        .form-group input:hover,
        .form-group select:hover {
            border-color: #3800ff;
        }

        .buttons {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 40px;
        }

        button {
            padding: 14px 28px;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        button.prev {
            background: #f7fafc;
            color: #4a5568;
        }

        button.next,
        button.submit {
            background: #0071ce5e;
            color: #000;
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        button.prev:hover {
            background: #edf2f7;
        }

        button.next:hover,
        button.submit:hover {
            background: #0071ce;
			 color: #FFF;
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .success-message.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        .success-message h2 {
            color: #e64b8d;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .success-message p {
            color: #666;
            line-height: 1.7;
            font-size: 16px;
        }

        .form-header {
            margin-bottom: 40px;
        }

        .form-header h1 {
            font-size: 24px;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #718096;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                padding: 20px;
            }

            .progress-steps {
                margin-top: 20px;
                flex-direction: row;
                justify-content: space-between;
                gap: 10px;
            }

            .step-item {
                flex-direction: column;
                text-align: center;
                padding: 10px;
            }

            .step-text {
                display: none;
            }

            .main-content {
                padding: 20px;
            }
        }

        .error {
            border-color: #ffb6c1 !important;
            background: #fff5f5 !important;
        }

        .error-message {
            color: #e64b8d;
            font-size: 13px;
            margin-top: 5px;
            display: none;
        }

        .error + .error-message {
            display: block;
        }

        .form-group input:focus::placeholder {
            color: #a0aec0;
        }

        .step-description {
            color: #718096;
            font-size: 14px;
            margin-top: 5px;
        }
        
header {
  display: block;
 position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  text-align: none;
  padding: 5px 0;
  background: #0071ce;
  z-index: 900;
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
}

.img_logo {
  width: 40px;
  border-radius: 90px;
}