html,body{
	overflow: unset;
}
.password-reset-page{
	min-height: 100vh;
}
.password-reset-container{
	height: 100%;
	display: flex;
    flex-direction: column;
}
.password-reset-wrapper{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding-top: 60px;
    justify-content: center;
    min-height: 688px;
}
.password-reset-header a{
	display: flex;
}
.password-reset-header a:hover svg path{
	fill: #0f5ada!important;
}
.password-reset-middle{
	background-color: #fff;
	display: flex;
}
.password-reset-header{
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
}
.password-reset-footer{
	margin-top: 40px;
}
.password-reset-box{
	padding: 40px 30px 60px;
	width: 400px;
}
h2{
	margin: 0;
	font-size: 20px;
	color: #1d1d1f;
	text-align: center;
	margin-bottom: 20px;
}
.choose{
	display: flex;
	justify-content: space-between;
    align-items: center;
}
.password-reset-box input,
.password-reset-box button,
.password-reset-success a{
	all: unset;
	font-size: inherit;
	box-sizing: border-box;
	color: inherit;
}
.password-reset-box button{
	cursor: pointer;
}
.login a{
	font-size: 14px;
    display: flex;
    align-items: center;
    color: #2468de;
    font-weight: 600;
}
.login a svg path {
    fill: #2468de;
}
.login a:hover{
	color: #0f5ada;
}
.login a:hover svg path{
	fill: #0f5ada;
}
.account-type-choose button{
	color: #2468de;
	text-decoration: underline;
	font-weight: 600;
    font-size: 14px;
}
.password-reset-unit {
    margin-bottom: 16px;
}
.password-reset-unit.field {
    height: 42px;
    border: 1px solid #d8d8d8;
    display: flex;
    font-size: 14px;
    font-weight: 400;
}
.password-reset-box label {
    all: unset;
    height: 100%;
    width: 100%;
}
.field .field-name {
    width: 80px;
    display: flex;
    align-items: center;
    padding-left: 16px;
}
.field .field-input {
    display: flex;
    align-items: center;
    width: calc(100% - 80px);
}
.field  label input {
    height: 100%;
    width: 100%;
    padding: 0 16px;
    color: #191b1f;
    cursor: auto;
}
.password-reset-unit.submit button ,
.password-reset-success a{
    display: block;
    width: 100%;
    height: 42px;
    background: #2468de;
    font-size: 14px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    line-height: 42px;
    overflow: hidden;
}
.password-reset-unit.submit button:hover,
.password-reset-success a:hover{
    background-color: #0f5ada;
}
.field .field-input.code{
	position: relative;
}
.field .field-input.code .send-button{
	position: absolute;
    right: 16px;
    transform: translateY(-50%);
    top: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}
.verify-tabs{
	display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
}
.tab-btn {
    width: 50%;
    display: flex;
    justify-content: center;
}
.tab-btn button {
    height: 49px;
    font-size: 16px;
    line-height: 46px;
    position: relative;
    cursor: pointer;
    color: #191b1f;
}
.tab-btn button::after {
    background-color: #1772f6;
    bottom: 0;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100px;
    transition: all 0.3s;
}
.tab-btn button.active {
    font-weight: 600;
}
.tab-btn button.active::after {
    width: 100%;
}
.separation {
    height: 30px;
    width: 1px;
    background: #eee;
}
.password-reset-unit.title
.password-reset-unit.title p{
    font-size: 13px;
}
p.error{
	margin: 0;
	color: red;
	font-size: 14px;
}
@media(max-width: 1023px){
    .password-reset-footer{
        max-width: 430px;
    }
}
@media(max-width: 430px){
    .password-reset-page{
        height: auto;
        min-height: 100vh;
    }
    .password-reset-wrapper{
        display: block;
        min-height: 0;
        height: auto;
        padding: 60px 0;
        align-items: unset;
        background-color: #fff;
    }
    .password-reset-wrapper{
    }
    .password-reset-middle,
    #app,
    .password-reset-box{
        width: 100%;
    }
    .password-reset-page{
        background: #fff!important;
    }
    .password-reset-header{
        margin-bottom: 10px;
    }
    .password-reset-header a svg{
        width: 150px;
    }
    .password-reset-footer{
        padding: 0 30px;
        margin-top: 20px;
    }
}

@media(max-width: 375px){
    h2{
        font-size: 18px;
    }
    .password-reset-wrapper{
        padding: 40px 0;
    }
    .password-reset-header{
        margin-bottom: 0;
    }
    .password-reset-header a svg{
        width: 120px;
    }
    .login a,
    .password-reset-footer,
    .account-type-choose button,
    p.error,
    .password-reset-unit.title,
    .password-reset-unit.title p{
        font-size: 13px;
    }
    .tab-btn button{
        font-size: 14px;
    }
    .password-reset-box{
        padding: 30px 20px 50px;
    }
    .password-reset-box .field{
        font-size: 13px;
    }
    .password-reset-box .field .field-name{
        width: 70px;
        padding-left: 10px;
    }
    .password-reset-box .field .field-input{
        width: calc(100% - 70px);
    }
    .password-reset-box label input{
        padding: 0 10px;
    }
    .password-reset-box .field .field-input.code .send-button,
    .password-reset-box .field .field-input.password button{
        right: 10px;
    }
    .password-reset-box .field .field-input.password button svg{
        width: 18px;
        height: 18px;
    }
}