

/* Styles for the Styled Forgot Password Page */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px; /* Adjust the container width as needed */
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    text-align: center;
}

.image {
    max-width: 50%;
    height: auto;
    margin-bottom: 20px; /* Add margin at the bottom of the image */
}

.content {
    width: 100%; /* Expand content to full width */
    padding: 20px;
    box-sizing: border-box; /* Include padding in width calculation */
}

h1 {
    color: black; /* Change the heading color */
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

.form-group {
    margin-top: 20px;
}

label {
    display: block;
    font-weight: bold;
    color: #08053583;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}
button {
    background-color: #6863be;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 12px 20px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 20px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}