.login-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 110vh;
  background-color: rgb(8,135,154);
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.logo{
    flex:1.5;
}

.loginh2 {
  font-size: 24px;
  margin-bottom: 10px;
  flex:0.7;
  color: white;
}

#loginput {
  width: 60%;
  max-height:15px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  flex:0.2;
  color:rgb(8,135,154);
  font-size:34px;
}

.loginbutton {
  width: 50%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  flex:0.1;
  margin: 10px;
}

.loginbutton:hover {
  background-color: #0056b3;
  flex:0.1;
}

/* CSS for the Bible verse */
.bible-verse {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #333; /* Dark gray text color */
  margin: 20px 0;
  padding: 10px;
  border: 2px solid #666; /* Medium gray border */
  border-radius: 10px;
  background-color: #f9f9f9; /* Very light gray background */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Subtle box shadow */
}

/* CSS for the reference (e.g., Book and Chapter) */
.reference {
  font-size: 18px;
  font-weight: bold;
  color: #666; /* Medium gray color */
}

/* CSS for the verse text */
.verse-text {
  font-size: 24px;
  font-style: italic;
  font-weight: bold;
  color: rgb(8,135,154); /* Dark gray text color */
  margin-top: 10px;
}

/* CSS for any emphasis or highlight within the verse */
.emphasis {
  color: #2196F3; /* Blue color for emphasis */
  font-style: normal;
  text-decoration: underline;
}
