/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

#register-envio-customers {
    max-width: 600px;
    width: 100%;
    margin: 20px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.progress-bar {
    width: 100%;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar-fill {
    height: 10px;
    width: 0;
    background: #0073aa;
    transition: width 0.3s;
}

#register-envio-customers h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #0073aa;
}

#register-envio-customers label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

#register-envio-customers input,
#register-envio-customers select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

#register-envio-customers button {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

#register-envio-customers button:hover {
    background: #005a8c;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.thank-you-container {
    text-align: center;
    padding: 50px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.thank-you-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0073aa;
}

.thank-you-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thank-you-container .button {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
}

.thank-you-container .button:hover {
    background: #005a8c;
}

/* Media Queries */
@media (max-width: 600px) {
    #register-envio-customers {
        padding: 15px;
    }

    #register-envio-customers input,
    #register-envio-customers select,
    #register-envio-customers button {
        font-size: 14px;
    }
}
