.p_forget {
    min-height: 75vh;
    padding-top: 100px;
}

.p_forget .container {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    width: 50%;
    /* min-height: 100vh; */
    padding: 40px;
    margin: auto;
}

.p_forget .form-wrapper {
    width: 100%;
    max-width: 515px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: white; */
    border-radius: 12px;
    padding: 40px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.p_forget .breadcrumb {
    font-weight: 400;
    font-size: 14px;
    color: #3c3e42;
    display: flex;
    gap: 10px;
}

.p_forget .breadcrumb span {
    font-weight: 400;
    font-size: 14px;
    color: #808180;
    cursor: pointer;
}

.p_forget .breadcrumb span.active {
    color: #333;
}

.p_forget .step-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 49px;
    gap: 20px;
}

.p_forget .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #808180;
}

.p_forget .step.active {
    color: #3c3e42;
}

.p_forget .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 12px;
}

.p_forget .step.active .step-number {
    background: #108cda;
    color: white;
}

/* 虚线连接线 */
.p_forget .step-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    background-size: 3px 1px;
    background-repeat: repeat-x;
    opacity: 1;
    /* margin: 0 auto; */
    margin-top: 45px;
}

.p_forget .input-group {
    margin-bottom: 20px;
    position: relative;
}

.p_forget .input-group input {
    width: 435px;
    height: 48px;
    /* padding: 12px 16px; */
    border: 1px solid #d8d8d8;
    border-radius: 80px;
    font-size: 14px;
    outline: none;
    padding-left: 100px;
    transition: all 0.2s;
}

.p_forget .input-group input:focus {
    border-color: #108cda;
    box-shadow: 0 0 0 2px rgba(16, 140, 218, 0.1);
    box-sizing: border-box;
}

/* 输入框内标签 */
.p_forget .input-group label {
    position: absolute;
    left: 16px;
    top: 12px;
    font-size: 14px;
    color: #333;
    background: white;
    padding: 0 8px;
    z-index: 1;
}

/* 按钮 */
.p_forget .btn-next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 381px;
    height: 51px;
    background: rgba(16, 140, 218, 0.48);
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    border: none;
    border-radius: 186px;
    margin-top: 44px;
    cursor: pointer;
    transition: background 0.3s;
}

.p_forget .btn-next:hover {
    background: #0a7bcf;
}
