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

nav {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #337ab7;
    color: white;
    padding: 10px 0;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.menu li a {
    color: white;
    text-decoration: none;
}

.forgot_password form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #000;
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.form-row label {
    text-align: left;
    width: 100%;
}

.form-row input {
    width: 100%;
    height: 30px;
    border-radius: 5px;
}

.buttons {
    width: 100%;
}

.buttons input[type="submit"], .buttons .button, .forgot_password form input[type="submit"] {
    flex-grow: 1;
    margin: 0 5px;
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}

.button {
    text-align: center;
    line-height: 1.6;
}

.forgot_password form input[type="email"] {
    flex-grow: 1;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 10px;
    width: 80%;
    margin-bottom: 10px;
}

.forgot_password.message {
    margin-top: 20px;
}

#message {
    color: red;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
