body 
{
  width: 97%;
  height: 97vh;
  background-color: #018281;
  color: black;
  font-family: epic;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crt { animation: fadeIn 7s; }
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.crt::before 
{
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 3;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
.crt::after 
{
  content: " ";
  display: block;
  position: fixed;
  top: 0; 
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

@font-face {
font-family: epic;
  src: url(W95FA.otf);
}
.loginer {
  width: 479px;
  height: 300px;
  background-image: url('w95w.png');
  background-size: cover;
}

    input[type="text"], input[type="password"], input[type="submit"] {
        width: calc(100% - 22px);
        background-color: #F8F8F8;
        padding: 10px;
        margin: 8px 0;
        display: inline-block;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }
    input[type="submit"] {
        width: 25%;
        color: black;
        border: 1px solid #ccc;
        cursor: pointer;
        font-family: epic;
    }