* {
    direction: ltr;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e0e5ec;
    font-family: Arial;
}

.Container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
    flex-wrap: wrap;
}

.Wrap-Login {
    width: 400px;
    overflow: hidden;
    border-radius: 30px;
    background: #e0e5ec;
    box-shadow: 10px 10px 22px rgba(0, 0, 0, 0.2), -10px -10px 22px rgba(255, 255, 255, 0.75);
    padding: 30px;
}

form h1 {
    text-align: center;
    color: #314e85;
    padding-bottom: 45px;
    font-family: Arial;
}

form {
    width: 100%;
}

.Wrap-Input {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.Wrap-Input i {
    color: #a3a3a3;
    right: 88%;
    font-size: 20px;
    position: absolute;
    top: 35px;
    padding: 10px 10px;
}

.fa-eye {
    left: 86%;
}

.Pass-Input {
    margin-bottom: 35px;
}

.Input:focus::placeholder {
    transition: all 0.3s;
    color: transparent;
}

.Input-Label {
    margin-left: 20px;
    font-size: 14px;
}

form .Input {
    transition: all 0.6s;
    margin-top: 10px;
}

form .Input {
    color: #464646;
    padding: 0 7px 0 43px;
    font-family: Arial;
    font-size: 16px;
    height: 50px;
    display: block;
    width: 100%;
    outline: none;
    border: none;
    background: transparent;
    border-radius: 20px;
    box-shadow: inset 5px 5px 11px rgba(0, 0, 0, 0.2), inset -5px -5px 11px rgba(255, 255, 255, 0.75);
}

 ::placeholder {
    color: #a3a3a3;
    opacity: 1;
    /* Firefox */
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a3a3a3;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #a3a3a3;
}

.button {
    font-family: Arial;
    font-size: 18px;
    font-weight: 400;
    color: #3db166;
    border-radius: 25px;
    border: none;
    background-color: #e0e5ec;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 45px;
    transition: all 0.4s;
    box-shadow: 10px 10px 22px rgba(0, 0, 0, 0.2), -10px -10px 22px rgba(255, 255, 255, 0.75);
}

.button:active {
    box-shadow: inset 5px 5px 11px rgba(0, 0, 0, 0.2), inset -5px -5px 11px rgba(255, 255, 255, 0.75);
}