/* Full-screen background */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../../images/login-bg.jpg) no-repeat center center fixed;
    background-size: cover;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    font-family: "Rubik", sans-serif;
}
.login-container {
    background-color: rgba(255, 255, 255, 0.95); /* semi-transparent white */
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;			
}

.login-content__inner {
    text-align: center;
}

/* Adjust logo box for centering */
.logo-box {
    margin-bottom: 20px;
}

.logo {
    margin-bottom: 20px;
}
.logo img {
    max-width: 250px;
    height: auto;
}


/* Remove extra background */
.login-wrapper, .page-wrapper, .login-bg {
    display: none;
}

#login-message {
	background-color: black;
	color: white;
	font-weight: 600;
	text-align: center;	
	line-height: 20px;
	font-size: 18px;
	padding: 10px;
	margin-bottom: 30px;
	margin-top: 0px;
}

#success-message {
	background-color: rgba(0,116,0,1.00);
	color: white;
	font-weight: 600;
	text-align: center;	
	line-height: 20px;
	font-size: 18px;
	padding: 10px;
	margin-bottom: 10px;
	margin-top: 0px;
	display: none;
}

#error-message {
	background-color: rgba(169,0,0,1.00);
	color: white;
	font-weight: 600;
	text-align: center;	
	line-height: 20px;
	font-size: 18px;
	padding: 10px;
	margin-bottom: 10px;
	margin-top: 0px;
	display: none;
}

#login-paragraph {
	margin-bottom: 20px;
	font-weight: 400;
	text-align: center;	
	line-height: 19px;
	font-size: 16px;
	padding: 10px
}

#login-sub-paragraph {
	margin-top: 20px;
	margin-bottom: 5px;
	font-weight: 400;
	color: darkred;
	text-align: center;	
	line-height: 17px;
	font-size: 15px;
	padding: 10px
}

.login-container form input[type=text],
.login-container form input[type=email],
.login-container form input[type=password] {
  width: 100%;
  border-radius: 8px;
  background-color: #F0EAC2;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  margin-bottom: 10px;
}

.signup-link {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  color: #FAA61C;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 20px;
  text-align: right;
  line-height: 1;
  margin: 15px 5px 30px 5px;
}

.signup-link {
  color: #FAA61C;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.signup-link:hover {
  color: #084C61;
  text-decoration: underline;	
}

.fine-print {
	font-size: 12px;
	line-height: 14px;
}
