 body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .login-container {
    background-image: url(/admin/images/bg.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
  }

  .login-form h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .login-form input[type="text"],
  .login-form input[type="password"] {
    width: 93%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 20px;
  }

  .login-form button {
    width: 50%;
	margin-left: auto;
    margin-right: auto;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 20px;
    background: #ff7e67;
    color: white;
    font-size: 16px;
    cursor: pointer;
	display: block;
  }

  .login-form button:hover {
    background: #ff6243;
  }

  .options {
    text-align: center;
    margin-top: 20px;
  }

  .options label {
    margin-right: 20px; /* Increased padding between Remember Me and Forgot Password */
  }

  .options a {
    text-decoration: none;
    color: #ff7e67;
  }

  .register-button {
    display: block;
    width: 80%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background: #5cb85c;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px; 
	margin-bottom: 20px; 
    cursor: pointer;
	margin-left: auto;
    margin-right: auto;

  }

  .register-button:hover {
    background: #4cae4c;
  }


.code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjust the space between the input fields as needed */
}

    .code-inputs input[type="text"] {
        width: 40px; /* Width of the rectangle */
        padding: 10px;
        text-align: center;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

        .code-inputs input[type="text"]:focus {
            outline: none;
            border-color: #ff7e67; /* Focus color */
        }

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] { /* Include type="email" */
    width: 93%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 16px;
}