* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

.x-btn {
    padding: 12px 16px;
    background-color: #07A550;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.x-btn:hover {
    background-color: #131313;
}

/* Form Section */
.form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 120px 15px;
}

.form-container {
    max-width: 600px;
    width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 40px;
    color: #131313;
}

/* Progress Bar */
.formprogress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.progress {
    position: absolute;
    left: 0;
    height: 4px;
    background: #07A550;
    transition: width 0.3s ease;
    width: 0;
}

.progress-step {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
}

.progress-step.active {
    background: #07A550;
    color: #fff;
    z-index: 999;
}

/* Input Fields */
.form-group {
    margin-bottom: 15px;
}

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

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    outline: none;
    transition: border 0.3s ease, background 0.3s ease;
}

.form-group input:focus {
    border: 1px solid #07A550;
    background: #fff;
}

/* Buttons */
button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background: #07A550;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #065c37;
}

.prev-button {
    background: #6c757d;
    margin-bottom: 20px;
}

.prev-button:hover {
    background: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
    
    .progress-step {
        width: 30px;
        height: 30px;
    }
}
