
    .box {
    width: 300px;
    padding: 40px;
    position: absolute;
    top: 50;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    display: block;
    align-items: center;
    background: #000d1a;
}

    input:focus { 
   font-size: 16px!important
   }
    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    /* Firefox */
    input[type=number] {
      -moz-appearance: textfield;
    }

   .logo {
      background: url(https://www.arayamobile.com.ar/assets/images/araya-mobile-favicon.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin: 0 auto;
      box-shadow: 0px 0px 2px  #2ecc71 , 
      0px 0px 0px 5px  #1440de , 
      8px 8px 15px #0278ca,
     -8px -8px 15px #0278ca;
   }

.login {
    width: 300px;
    padding: 40px;
    position: absolute;
    top: 50%;
    Left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    *display: block;
    align-items: center;
    background: #000d1a;
}

.login:before{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: white;
    z-index: -1;
}

.login:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: white;
    z-index: -2;
    filter: blur(40px);

}

.login:before,
.login:after{
   background: linear-gradient(235deg, #89ff00, #060c21,
     #00bcd4);
}

.box h1 {
    color: #2892c6;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    font-size: 14px;
    margin-top: 25px;
    text-shadow: 0 0 2px #ffe05b;
    position: relative;
    Letter-spacing: 8px;
}
.box h1:after{
    content: attr(data-text);
    top: 0;
    left: 0;
    padding: 0 60px;
    position: absolute;
    z-index: -1;
    color: #ff005b;
    filter: blur(15px);
}

.box h1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: #fe3a80;
    z-index: -2;
    opacity: 0.5;
    filter: blur(40px);
}

.box input[type = "email"],.box input[type = "number"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #0080ff;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: white;
    border-radius: 25px;
    transition: 0.25s;
    box-shadow: 0 0 5px #0278ca,
                0 0 25px #0278ca;
    letter-spacing: 4px;
}

.box input[type = "email"]:focus,.box input[type = "number"]:focus {

    box-shadow: 0 0 5px #89ff00,
                0 0 25px #89ff00;
    width: 230px;
}

.box input[type = "submit"]{
    border: 2px solid #2ecc71;
    background: none;
    display: block;
    margin: 25px auto;
    text-align: center;
    padding: 14px 40px;
    outline: none;
    color: white;
    letter-spacing: 4px;
    border-radius: 25px;
    transition: 0.25s;
    cursor: pointer;
    box-shadow: 0 0 5px #0278ca,
                0 0 25px #0278ca;
}

.box input[type = "submit"]:hover{
    width: 202px;
    background: #0278ca;
}


