/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.container {
    padding: 20px;
    max-width: 1200px; /* Adjusted page size to fit within the viewport */
    margin: 0 auto; /* Center the container */
}

.progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.circle {
    width: 70px; /* Increased circle size */
    height: 70px; /* Increased circle size */
    text-align: center;
    line-height: 70px; /* Center text vertically */
    border-radius: 50%;
    background-color: #ddd;
    color: #333;
    font-weight: bold;
    box-sizing: border-box;
    font-size: 14px;
}

.circle.completed {
    background-color: #4CAF50;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.msme-type-group {
    display: flex;
    justify-content: space-between;
}

.msme-type {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f1f1f1;
}

.msme-type-group input[type="radio"] {
    display: none;
}

.msme-type-group input[type="radio"]:checked + .msme-type {
    background-color: #4CAF50;
    color: white;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1001;
}

.popup .spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top: 5px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    color: red;
    font-size: 12px;
    display: none;
}

#email {
    text-transform: uppercase;
}
