fieldset {
    border: none;
}

#loginform{
    cursor: pointer;
}

.login {
  position: absolute;
  display: none;
  margin-top:10px;
  z-index:10000;
  right: 75px;
}

#ingreso{
    color: #333;
}

#ingreso:hover {
    color: #717fe0;
}

.arrow-up {
	width: 0; 
	height: 0; 
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 15px solid #ECF0F1;
    right: 10%;
    position: absolute;
    top: -10px;
}

.formholder {
  background: #ecf0f1;
  width: 350px;
  border-radius: 5px;
  padding-top: 5px;
}  
input[type="email"], input[type="password"] {
    padding: 7px 5px;
    margin: 10px 0;
    width: 96%;
    display: block;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
  
#loginButton {
    background: #1abc9c;
    padding: 10px;
    font-size: 20px;
    display: block;
    width: 100%;
    border: none;
    color: #fff;
    border-radius: 5px;
}

#loginButton:hover {
    background: #2ecc71;
}

.randompad {
    padding: 10px;
}

.green {
    background-color: #dae0e5!important;
}

a {
  color: #ecf0f1;
  text-decoration: none;
}

@media (max-width: 992px) {
    .login {
        right: 15%;
        top: 0px;
    }
    .formholder {
        width: auto;
    }
    .arrow-up {
        right: 20%;
    }
    #loginMobile:hover {
        color: #717fe0;
    }
}