


/* ------------------------------------- Begin "List of contents" ------------------------------------- */



/*
  1. animate
  2. form
  3. Main
  4. message
*/


/* -------------------------------------- End "List of contents" -------------------------------------- */




/* ------------------------------------------ Begin "animate" ----------------------------------------- */

/*- 123 */

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0,-40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/* ------------------------------------------- End "animate" ------------------------------------------ */




/* ------------------------------------------- Begin "form" ------------------------------------------- */

form {
  animation-name: fadeInDown;
  animation-duration: 0.5s; 
}

input[type="submit"] {
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  display: table;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  cursor: pointer;
  background-color: rgb(102, 51, 0);; 
  margin: 20px auto;
  transition: padding 0.5s;
}

input[type="submit"]:hover, .button:hover {
  background-color: rgb(102, 51, 0);;
  text-decoration: none;
  padding: 15px 55px;  
}

#loginbox input[type="text"], #loginbox input[type="password"] {
  padding: 15px 35px;
  display: block;
  margin: 10px 0 25px 0;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5; 
  font-size: 16px;
  border-radius: 15px 50px 50px 50px;
  box-sizing: border-box;
  border: 3px solid rgb(102, 51, 0);;
  background-color: #fff;
}

#loginbox input[type="text"]:focus, #loginbox input[type="password"]:focus {
  outline: none;
  border-color: rgb(102, 51, 0);;
}



/* -------------------------------------------- End "form" -------------------------------------------- */




/* ------------------------------------------- Begin "Main" ------------------------------------------- */

html {
  background: rgb(242,244,250);  
  background: #fff;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 10px;
  background: rgb(242,244,250);
  background: #fff;
}

body {
  font-size:18px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  color: #222;
}

a {
  text-decoration:none;
  color: rgb(113, 175, 163);
  cursor: pointer;
}
	
a:hover {
	text-decoration:underline;
}

.center {
  text-align: center; 
}  

.bold {
  font-weight: bold; 
}


#loginbox {
  box-sizing: border-box;
  background-color: #fff;
  padding: 25px 50px 50px 50px;
  margin: 50px auto;
  max-width: 800px;
  width: 100%;
  box-shadow: 0px 6px 30px 0px rgba(66, 68, 90, 0.26);

  border-radius: 30px;
}


@media only screen and (max-width: 600px) {
  body {
    padding-top: 20px;
  }
  #loginbox {
    padding: 15px;
    margin: 0;
    max-width:auto;
    width: auto;
    box-shadow: none;
  }
}

#loginbox img {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  display: block;
}


/* -------------------------------------------- End "Main" -------------------------------------------- */




/* ------------------------------------------ Begin "message" ----------------------------------------- */

.message {
  padding: 15px 35px 15px 60px;
  display: block;
  margin: 10px 0 30px 0;
  width: 100%;
  border-radius: 15px 50px 50px 50px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border: 3px solid rgba(29, 155, 240);
  background-color: #fff;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: left 20px center;
  background-size: 20px;
  position: relative;
}

.hide_message {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  background-image: url('close-dark.svg');  
  cursor: pointer;
  opacity: 0.5;
}

.hide_message:hover {
  opacity: 1; 
}

.message:last-of-type {
  margin-bottom: 35px; 
}
	
.error {
  background-image: url('error-dark.svg');
  border-color:#FFD5D5;
  color:#FF0000;
}
.success {
  background-image: url('success-dark.svg');
  border-color: #009933;
  color: #009933;
}



/* ------------------------------------------- End "message" ------------------------------------------ */

