/* Container */
.register-container {
    width: 100%;
    background: #fff;
    /* border-radius: 10px; */
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
    overflow: hidden;
    /* position: relative; */
    padding-top: 15px;
}

/* Step headers */
.step-header {
    background: #007BFF;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* Form Body */
.form-body {
    padding: 15px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    padding-top: 0px !important;
}

.form-body.active {
    opacity: 1;
    max-height: 1000px;
    /* enough height to show all fields */
}

/* Input group */
.form-body .input-group {
    margin-bottom: 15px;
    position: relative;
}

.form-body .input-group label {
    display: block;
    margin-bottom: 5px;
    color: #020202;
}

.form-body .input-group input,
.form-body .input-group select {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.form-body .input-group i {
	position: absolute;
	top: 38px;
	left: 10px;
	transform: none;
	color: var(--mcw-accent);
	margin-top: 3px;
}

.form-body .input-group > span {
    display: block;
    min-height: 16px;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.form-body .input-group > span:empty {
    visibility: hidden;
}

/* Verification code one line */
.verification-line label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.verification-flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

.verification-flex span {
    background: var(--mcw-accent);
    padding: 7px 15px;
    border-radius: 6px;
    font-weight: bold;
    letter-spacing: 2px;
    min-width: 100px;
    text-align: center;
}

.verification-flex input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.button-group.next-btn-my {
    padding: 0px 90px;
}

/* Terms checkbox */
.terms {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: black;
}

/* Buttons */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    background: var(--mcw-primary);
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

/* Register top image */
.register-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding: 0px 20px;
	background: white;
	padding-bottom: 20px !important;
}

.register-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
