* {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    background: #edf0f6;
}

.Logo-Center img {
    width: 100vw;
    height: auto;
}

.Input-Center h1 {
    text-align: center;
    font-size: 25px;
    font-weight: 400;
}

.Input {
    width: 100vw;
}

.Input-Form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
}

.Input-Form-List {
    width: 85%;
}

.Input-Top {
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.Input-Left img {
    width: 25px;
    margin-right: 7px;
}

.Input-Right {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.Subint {
    width: 100%;
    height: 50px;
    border-radius: 7px;
    background: #fff;
    margin-top: 4px;
    display: flex;
    justify-content: center;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
}

.Subint:focus-within {
    border: 1px solid #007aff;
}

.Subint input {
    width: 90%;
    border: none;
    font-size: 14.5px;
    outline: none;
}

button {
    width: 85%;
    height: 50px;
    margin-top: 20px;
    color: #fff;
    background: #007aff;
    border-radius: 7px;
    border: none;
    font-size: 16px;
    font-weight: 500;
}