/* forgot_password.css */

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Audiowide", Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo-image {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    font-family: "Audiowide", Arial, sans-serif;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
}

label {
    display: block;
    margin-top: 10px;
    font-family: "Audiowide", Arial, sans-serif;
}

input[type="email"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Audiowide", Arial, sans-serif;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Flash message styling (adjust as needed) */
#flash-messages {
    list-style: none;
    padding: 0;
}

#flash-messages li {
    background-color: #d9534f;
    color: #fff;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

/* Add this CSS to your CSS file or in a <style> tag in your HTML */

/* Style for the Back Button */
.back-button {
    display: inline-block;
    padding: 10px 20px; /* Adjust the padding as needed */
    background-color: #007bff; /* Button background color */
    color: #fff; /* Button text color */
    text-decoration: none; /* Remove underlines */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Show hand cursor on hover */
  }
  
  /* Hover effect for the Back Button */
  .back-button:hover {
    background-color: #0056b3; /* Button background color on hover */
  }
  

/* Mobile responsiveness */
@media (max-width: 768px) {

    /* Adjust styles for smaller screens, e.g., smartphones */
    #loginForm {
        width: 90%;
        /* Make the form width 90% of the viewport */
    }
}