* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.user {
    width: 300px;
    height: 50px;
    font-size: 18px;
    letter-spacing: 1px;
    outline: none;
    border: 3px solid #56bde6;
    border-radius: 10px;
    padding: 5px 5px 5px 15px;
}

.password {
    width: 300px;
    height: 50px;
    font-size: 1.35rem;
    letter-spacing: 1px;
    outline: none;
    border: 3px solid #56bde6;
    border-radius: 10px;
    padding: 5px 5px 5px 15px;
    margin: 15px 0;
}
.input {
    margin: 15px;
}

.eye {
    position: relative;
    left: -45px;
    top: 2px;
    font-size: 20px;
    cursor: pointer;
}
.submit {
    outline: none;
    border: none;
    width: 300px;
    height: 50px;
    margin: 0px 15px;
    border-radius: 10px;
    background-color: #56bde6;
    font-size: 18px;
    cursor: pointer;
}
.beam {
    position: absolute;
    top: 51%; left: -44%;
    right: 1.75rem;
    clip-path: polygon(100% 50%, 100% 50%, 0 0, 0 100%);
    width: 100vw;
    height: 25vw;
    z-index: 1;
    mix-blend-mode: multiply;
    transition: transform 100ms ease-out;
    transform-origin: 100% 50%;
    transform: translateY(-50%) rotate(var(--beamDegrees, o));
    pointer-events: none;
}

.show-password .beam {
    background: #8739f9;
}

.show-password {
    background: #100f10;
}

.show-password .eye {
    color: #363636;
}

.show-password .submit {
    background: #8739f9;
}