@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

body {
  user-select: none;
  background: linear-gradient(-45deg, #5fee52, #ff5530, #23a6d5, #ff0000);
  background-size: 400% 400%;
  -webkit-animation: gradient 5s ease infinite;
  animation: gradient 5s ease infinite;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.cont {
  position: relative;
  width: 25%;
  height: 400px;
  padding: 10px 25px;
  margin: 10vh auto;
  background: #fff;
  border-radius: 8px;
}

.form {
  width: 100%;
  height: 100%;
}

h1,
h2,
.user,
.pass {
  text-align: center;
  display: block;
}

h2 {
  color: #383f5e;
  font-weight: bold;
  font-size: 30px;
  margin: 30px auto;
}

.user,
.pass,
.login {
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: lighter;
  margin-bottom: 30px;
}

.user,
.pass {
  background: #ecf0f1;
}

.login {
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
  background: #3598dc;
  transition: background 0.4s ease;
}

.login:hover {
  background: #3570dc;
}


@media only screen and (min-width : 280px) {
  .cont {
    width: 90%
  }
}

@media only screen and (min-width : 480px) {
  .cont {
    width: 60%
  }
}

@media only screen and (min-width : 768px) {
  .cont {
    width: 40%
  }
}

@media only screen and (min-width : 992px) {
  .cont {
    width: 30%
  }
}

h1 {
  color: #fff;
  margin-top: 25px;
}



footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(25, 0, 255);
  color: white;
  text-align: center;
  font-size: 1.5em;
}


.btn_logout {
  width: 10%;
  height: 45px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1%;
  position: fixed;
  top: 1%;
  right: 1%;

}
.btn_logout:hover{
  color: #ee062d;
}
.profile_name
{
  width: 15%;
  height: 45px;
  border:#ff0000;
  border-radius: 5px;
  font-size: 20px;
  font-weight:bold;
  margin-bottom: 1%;
  position: fixed;
  top: 2.5%;
  right: 8%;

}