:root {
    --primary: #6e2b77;
    --primary-light: #8a3b96;
    --primary-dark: #5a1f63;
    --secondary: #ff8100;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background: #f5f5f7;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #6e2b77, #9b4dca);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    color: var(--text-dark);
}

.container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
}

.header {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.logo-container h1 {
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 20px;
    font-weight: 600;
}

.progress-indicator {
    display: flex;
    gap: 8px;
}

.step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.step.active {
    background-color: var(--secondary);
}

.content {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

input,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

input:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(110, 43, 119, 0.2);
}

.section {
    margin-bottom: 30px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.custom-fields {
    margin-bottom: 20px;
}

.custom-field-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.custom-field-row:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.custom-field-row select {
    flex: 2;
}

.custom-field-row input {
    flex: 1;
}

.btn-remove {
    background-color: #ff5252;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: var(--transition);
}

.btn-remove:hover {
    background-color: #ff0000;
    transform: scale(1.05);
}

.btn-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: var(--primary);
    border: 2px dashed var(--primary);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.btn-add:hover {
    background-color: rgba(110, 43, 119, 0.05);
}

.plus-icon {
    font-size: 18px;
    font-weight: bold;
}

.footer {
    padding: 20px 30px;
    background-color: #f5f5f7;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid #e0e0e0;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    background-color: #eeeeee;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-field-row {
    animation: fadeIn 0.3s ease-out;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .custom-field-row {
        flex-direction: column;
    }

    .btn-remove {
        align-self: flex-end;
    }
}

