@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.login-page {
  padding: 4% 0 0;
  margin: auto;
}

/* Login Box */
.form {
  position: relative;
  z-index: 1;
  background: #ffffff;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  border-radius: 14px;
  border: 2px solid #D4AF37;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Inputs */
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #faf7f2;
  width: 100%;
  border: 1px solid #e3d7b5;
  margin: 0 0 15px;
  padding: 14px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 8px;
}

.form input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

/* Button */
.form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: linear-gradient(to right, #8B0D14, #D4AF37);
  width: 100%;
  border: none;
  padding: 15px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: linear-gradient(to right, #B8962E, #8B0D14);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Message */
.form .message {
  margin: 15px 0 0;
  color: #666;
  font-size: 13px;
}

.form .message a {
  color: #8B0D14;
  font-weight: 600;
  text-decoration: none;
}

.form .message a:hover {
  color: #D4AF37;
}

/* Info Section */
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}

.container .info h1 {
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
}

.container .info span {
  color: #f4e8c1;
  font-size: 13px;
}

/* Background */
body {
  background: linear-gradient(135deg, #8B0D14, #D4AF37);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
