.body {
    background-color: #CDE8E5;
    background-image: url('first_background.jpg');
}
/* Styles for the container element */
.container {
    display: flex; /* Enables flexbox layout */
    flex-direction: column; /* Stacks elements vertically */
    align-items: center; /* Centers elements horizontally */
    justify-content: center; /* Centers elements vertically within the container */
    height: 70vh; /* Set a desired height for the container */
    margin: 0 auto; /* Centers the container horizontally within the viewport */

}

p {
    font-weight: bold;
    margin-bottom: 20px; /* Adds space between title and form */
    color: #7AB2B2;
}
