* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: "Poppins", sans-serif;
}

.content {
    position: absolute;
    top: 47%;
    left: 50%;
    z-index: 999;
    text-align: center;
    padding: 40px 32px;
    width: 370px;
    transform: translate(-50%, -50%);
    background: #f8f8f8;
    box-shadow: -1px 4px 28px 0px rgba(0, 0, 0, 0.75);
    border-radius: 25px;
    opacity: 95%;
}

.content header {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 35px 0;
}

.field {
    position: relative;
    height: 45px;
    width: 100%;
    display: flex;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
}

.field span {
    color: #222;
    width: 40px;
    line-height: 45px;
}

.field input {
    height: 100%;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    outline: none;
    color: #222;
    font-size: 14px;
    padding-left: 8px;
    border-bottom: 2.5px solid #647AE7;
}

.space {
    margin-top: 16px;
}

.show {
    position: absolute;
    right: 13px;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    display: none;
    cursor: pointer;
}

.pass-key:valid~.show {
    display: block;
}

.pass {
    text-align: left;
    margin: 10px 0;
}

.pass a {
    color: white;
    text-decoration: none;
}

.pass:hover a {
    text-decoration: underline;
}

.field input[type="submit"] {
    background: #556EE6;
    border: 1px solid #556EE6;
    border-radius: 25px;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
}

.field input[type="submit"]:hover {
    background: #556EE6;
}

.login {
    color: white;
    margin: 20px 0;
}

.links {
    display: flex;
    cursor: pointer;
    color: white;
    margin: 0 0 20px 0;
}

i span {
    margin-left: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 16px;
}