body {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

body .bodyImg {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(10px);
    transform: scale(1.1);

}

.UserLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 0;
    height: 60px;
}

.UserLogo img {
    max-width: 100%;
    max-height: 100%;
}

main {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0px 10px 1px rgb(0 0 0 / 0.1);
    width: 96%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

form {
    padding: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div {
    margin: 10px 0;
}

h2 {
    width: 100%;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1;
    padding: 0 15px;
}

.w100 {
    width: 100%;

}

.w50 {
    width: 50%;
}

label {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

span {
    width: 80px;
    font-size: 14px;
    height: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
}

input {
    width: calc(100% - 120px);
    border: 1px solid #d1d5db;
    border-radius: 5px;
    height: 30px;
    padding: 0 10px;
    color: #000;
    font-size: 12px;
}

.button {
    margin-left: 15px;
    margin-right: 15px;
}

.button button {
    margin-top: 15px;
    width: 100%;
    color: #fff;
    background: #2563eb;
    border: 0;
    border-radius: 5px;
    height: 36px;
}

.code {
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
}

.code img {
    height: 34px;
}

.code a {
    line-height: 34px;
    padding: 0 15px;
    color: #fff;
    background: #2563eb;
    border-radius: 50px;
}

.aa {
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

a {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

sub,
small {
    color: #f00;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 5px;
}

small {
    display: block;
    width: 100%;
    padding-left: 80px;
}

.verification {
    font-size: 14px;
    text-decoration: none;
    border: none;
    line-height: 32px;
    padding: 0 15px;
    color: #fff;
    background: #2563eb;
    border-radius: 50px;
}

@media screen and (max-width: 640px) {
    .w50 {
        width: 100%;
    }

    .code {
        padding: 0 15px;
    }

    .verification {
        margin: 0;
        padding: 0 15px;
    }
}

input::placeholder {
    color: #cccccc;
}
