  .login-section {
    text-align: center;
    padding: 20px;
    background: #f3ffef;
    color: #888888;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 12px;
  }

  .login-section h2 {
    font-size: 24px;
    color: #222;
    font-weight: bold;
    margin: 0 auto;
  }

.instruction {
  text-align: center;
  font-size: 14px;
  font-family: 'Mulish', sans-serif;
  width: 100%;
  margin: 15px 0;
}

  .form {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: #555555;
  }

  input[type="email"], input[type="password"] {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 18px;
    color: #333;
    font-family: 'Mulish', sans-serif;
    height: 50px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    opacity: 1;
    text-indent: 15px;
  }

  .form button {
    margin-top: 15px;
    padding: 10px;
    background: #1579c2;
    font-size: 18px;
    color: #fff;
    font-family: 'Mulish', sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 50px;
  }
  .form button:hover {
    background: #125a90;
  }


.additional-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 20px 0;
        font-size: 14px;
        font-family: 'Mulish', sans-serif;
}
.remember-me {
	display: flex;
	align-items: center;
}
.remember-me input[type="checkbox"] {
	margin-right: 5px;
}
.forgot-password a {
	color: #0000CD;
	text-decoration: none;
}
.forgot-password a:hover {
	text-decoration: underline;
}

.bottomtext {
        text-align: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0 20px 0;
        font-size: 14px;
        font-family: 'Mulish', sans-serif;
}

.bottomtext a {
	color: #0000CD;
	text-decoration: none;
}