body {
    margin: 0;
    background: #F9FAFC;
}
input {
    font-size: 13px;
    font-weight: 400;
    height: 45px;
    border: 0;
    outline: none;
    padding: 0 10px;
}
input::placeholder {
    color: #9CA3AF;
}

.main {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}
.card {
    display: flex;
    flex-direction: column;
    width: 380px;
    border-radius: 10px;
    background: #ffffff;
    align-items: center;
    padding: 25px;
    gap: 25px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.head {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 520;
    gap: 15px;
}
.icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #2964FF;
    font-size: 24px;
    border-radius: 50%;
    background: #E7EEFF;
}
.title {
    font-size: 22px;
}
.item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap:5px;
    font-size: 14px;
}

.view{
    border-radius: 6px;
    border: 1px solid #E5E7EB;

}
.view:has(input:focus) {
    outline: 1px solid #3875FF;
}
.menu {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 520;
    text-align: center;
    background: #165DFF;
    border-radius: 6px;
}
.link {
    color: #525252;
    text-align: center;
    text-decoration: none;
}