body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
    /* Set a linear gradient background */
    background: linear-gradient(to bottom right, rgba(25, 25, 76, 1), rgba(51, 102, 153, 1));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#content_container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px; /* Set a fixed width for the form */
}

#form_header {
    text-align: center;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
}

#form_content_inner_container {
    display: flex;
    flex-direction: column;
}

input[type="email"],
input[type="password"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #007bff; /* Change border color on focus */
    outline: none; /* Remove default outline */
}

#button_container {
    display: flex;
    justify-content: space-between; /* Space buttons apart */
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    flex: 1; /* Allow buttons to share space evenly */
    margin: 5px; /* Space between buttons */
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}