#login {
    display: flex;
    gap: 4em;
}

#login > div {
    flex: 1;
}

#page label {
    display: block;
    font-family: "Kode Mono", monospace;
}

input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 0;
    border-bottom: dashed 1.5px rgba(255, 255, 255, 0.17);
    padding: 0.8em 1em;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #fff;
}

input[type=submit] {
    background: rgba(255,255,255,1);
    border: 0;
    border-radius: 3px;
    color: #000;
    font-weight: 600;
}

.login_bg {
    background: linear-gradient(180deg,rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.015) 100%);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.login_help_box {
    background: linear-gradient(180deg,rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.12) 100%);
    font-family: "Kode Mono", monospace;
    padding: 1.5em;
    margin-bottom: 4em;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.login_help_innerbox {
    background: rgba(255, 255, 255, 0.07);
    padding: 1em;
    border-radius: 6px;
}

#login_help img {
    margin-top: -3px;
    margin-right: 0.57em;
}

.help_bt {
    display: inline-block;
    background: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0.7em 1em;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.login-options {
    display: flex;
}

.label_password {
    display: flex;
    flex: 1;
    justify-content: end;
    color: #fff!important;
    text-decoration: underline;
}

.tab_link {
    color: #fff!important;
    text-decoration: underline;
}

.create_account {
    color: #fff!important;
    text-decoration: underline;
}

.pass_desc {
    display: inline-block;
    font-size: 0.875em;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    padding: 0.1em 0.5em 0.2em 0.5em;
    margin-right: 1em;
    margin-bottom: 1em;
}

.pass_desc::before {
	content: '✓';
    margin-right: 0.5em;
}

.custom_checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	position: relative;
}

.custom_checkbox input {
	position: absolute;
	opacity: 0;
}

.custom_checkbox span {
    font-family: "Plus Jakarta Sans", sans-serif;
	position: relative;
	padding-left: 28px;
}

.custom_checkbox span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 1px solid #fff;
	border-radius: 4px;
	background: transparent;
}

.custom_checkbox input:checked + span::before {
	background: rgb(37 199 193);
}

.custom_checkbox span::after {
	content: '✓';
	position: absolute;
	left: 6px;
	top: 50%;
	transform: translateY(-55%);
	color: #fff;
	font-size: 0.75em;
    font-weight: 400;
	opacity: 0;
}

.custom_checkbox input:checked + span::after {
	opacity: 1;
}

.custom_checkbox a {
    font-weight: 600;
    color: #fff;
}

.register_link {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    padding-top: 1em;
}

.register_link a {
    color: #fff;
}

/* Register theme */

.sec-step { display:none; }
.sec-step.active { display:block; }

.sec-progress {
    width: 100%;
    background: #414D52;
    height: 2px;
    margin-bottom: 35px;
    border-radius: 4px;
    position: relative;
}

.sec-progress-bar {
    height: 2px;
    width: 25%;
    background: #25C7C1;
    transition: 0.3s;
    border-radius: 4px;
}

.sec-progress-steps {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
	padding: 0 8em;
    display: flex;
    justify-content: space-between;
}

.progress-step .step {
    width: 42px;
    height: 42px;
    border-radius: 3px;
    background: #414D52;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125em;
    z-index: 2;
    transition: 0.3s;
}

.progress-step.active .step {
    background: #25C7C1;
    color: white;
}

.progress-step.completed .step {
    background: #25C7C1;
    color: white;
}

.sec-progress-desc {
    width: 100%;
	margin-top: 1.7em;
	padding: 0 7em;
    display: flex;
    justify-content: space-between;
}

.step_desc {
	font-family: "Kode Mono", monospace;
	font-size: 0.75em;
	text-align: center;
}

#secForm {
	margin-top: 5.5em;
}

#register {
    width: 50%;
    margin: 3em auto;
}

#register h1 {
    margin: 1em auto;
    text-align: center;
}

#register input {
    margin-bottom: 1em;
}

.step_buttons {
    display: flex;
    gap: 1em;
}

.step_buttons button {
    background: rgba(255,255,255,1);
    border: 0;
    border-radius: 6px;
    padding: 1em;
    flex: 1;
    font-weight: 600;
}

.step_buttons button:hover, #wp-submit:hover, .reset_bt:hover {
	background: linear-gradient(90deg,rgba(37, 199, 193, 1) 0%, rgba(40, 254, 208, 1) 100%)!important;
}

.step_buttons .prev_button {
    background: rgba(255,255,255,0.17);
    color: #fff;
}

.step_buttons .register_button {
	background: linear-gradient(90deg,rgba(40, 254, 208, 1) 0%, rgba(37, 199, 193, 1) 100%);
    font-weight: 600;
}

.role-switch {
    display: flex;
    gap: 1em;
    align-items: center;
    margin-bottom: 0.5em;
}

.role-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8em;
    cursor: pointer;
    padding: 0.5em 1em;
    border-radius: 4px;
    background: #fff;
    transition: all .25s ease;
    font-size: 0.75em;
    font-weight: 600;
}

.role-option input {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    transition: .2s ease;
}

.role-option input:checked + .custom-radio {
    background: #25C7C1;
}

.role-option input:checked + .custom-radio::after {
    transform: translate(-50%, -50%) scale(1);
}

.role-option:has(input:checked) {
    background: #25C7C1;
}

.role-text {
    color: #0f172a;
}

.cpr-wrapper {
    width: 50%;
    margin: 4em auto;
}

.cpr-wrapper .reset_bt {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border: 0;
    border-radius: 3px;
    color: #000;
    font-weight: 600;
    padding: 0.8em 1em;
    margin-top: 1em;
}

.pass_desc.valid {
    color: #25C7C1;
}

.pass_desc.invalid {
    color: #dc261f;
}

.login-error {
    color: #dc261f;
    margin-bottom: 1em;
}

.progress-step {
    cursor: pointer;
}