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

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

body {
    font-family: "Prompt", sans-serif;
    background: linear-gradient(135deg, #ffb347, #ff7e5f);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

h3 {
    color: #ff6600;
    margin-bottom: 20px;
    text-align: center;
}

p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    transition: 0.3s;
}

a:hover {
    color: #ffe0d1;
}

/* Progress Bar */
.progressbar {
    display: flex;
    justify-content: space-between;
    list-style: none;
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    padding: 0;
    counter-reset: step;
}

.progressbar li {
    position: relative;
    flex: 1;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    font-size: 14px;
    padding-top: 45px;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 3px solid rgba(255,255,255,0.5);
    background: linear-gradient(135deg, #ffb347, #ff7e5f);
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    z-index: 2;
}

.progressbar li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.5);
    top: 17px;
    left: -50%;
    z-index: -1;
    transition: 0.3s;
}

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

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

.progressbar li.active:before {
    border-color: #fff;
    background: #fff;
    color: #ff6600;
    font-weight: 600;
    z-index: 2;
}

.progressbar li.active:after {
    background: #fff;
}

/* Form Container */
form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 500px;
}

/* Steps */
.step {
    display: none;
    animation: fadeIn 0.5s;
}

.step.active {
    display: block;
}

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

/* Form Elements */
label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="time"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ffb347;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    font-family: "Prompt", sans-serif;
    transition: 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="time"]:focus,
textarea:focus {
    border-color: #ff6600;
    box-shadow: 0 0 10px rgba(255,102,0,0.3);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* File Input */
input[type="file"] {
    width: calc(100% - 80px);
    padding: 8px;
    border: 2px solid #ffb347;
    border-radius: 10px;
    font-size: 14px;
    font-family: "Prompt", sans-serif;
}

#cancel-logo {
    padding: 8px 15px;
    width: auto;
    margin: 0;
    background: #e74c3c;
    font-size: 14px;
}

#cancel-logo:hover {
    background: #c0392b;
}

/* Logo Preview */
#logo-preview {
    display: block;
    margin: 15px auto 0;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #ffb347;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Prompt", sans-serif;
    cursor: pointer;
    transition: 0.3s;
}

button.next,
button.submit {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    box-shadow: 0 4px 15px rgba(255,102,0,0.3);
}

button.next:hover,
button.submit:hover {
    background: linear-gradient(135deg, #e65c00, #ff6600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,102,0,0.4);
}

button.prev {
    background: #f0f0f0;
    color: #666;
}

button.prev:hover {
    background: #e0e0e0;
    color: #333;
}

/* Responsive */
@media (max-width: 600px) {
    form {
        padding: 30px 20px;
    }
    
    .progressbar {
        max-width: 100%;
    }
    
    .progressbar li {
        font-size: 12px;
    }
    
    .progressbar li:before {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    
    .progressbar li:after {
        top: 14px;
    }
}