/* Simple Frontend Login default styles */
body.login-page,
body.page-template-default {
    min-height: 100vh;
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center;     /* Vertical center */
    background-color: #f8f9fa; /* Optional: soft background colour */
}
.sfl-login-wrap {
  max-width: 400px;
  width: 100%;
  margin: auto;
  top:10%;
  bottom:10%;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position:sticky;
}
.sfl-login-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.sfl-login-logo img {
  max-width: 150px;
  height: auto;
}
.sfl-login-wrap,.sfl-logged-in{
	vertical-align:middle;
	margin-top:auto;
	margin-bottom:auto;
	text-align:center;
	display:block;
}
#sfl-loginform input[type="text"],
#sfl-loginform input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
#sfl-loginform input[type="submit"] {
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}
.sfl-message {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.sfl-private-notice {
  max-width: 400px;
  margin: 10vh auto;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fffaf5;
}
