/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #d6cec7;
    /* background: url('Images/notepaper.jpg') */
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: flex-start; /* Align items from the top */
    align-items: center;
    height: 100vh;
}

.content-container {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start; 
    padding: 20px; 
}

.text-section {
    flex: 1; /* Allow text section to grow */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-start; /* Align text to the top */
    align-items: flex-start; /* Align text to the left */
    text-align: left; /* Align text to the left within the text section */
    background-color: #f8f8f8; /* Light background color */
    padding: 20px; /* Add padding around text */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.6rem; /* Adjust size as needed */
    font-weight: normal;
    margin-bottom: 1.5rem;
}

/* Navbar styles */
body, html {
    height: 100%;
    margin: 0;
    font: 400 15px / 1.8 "Lato", sans-serif;
    color: #777;
}

.navbar {
    list-style-type: none; 
    padding: 20px; 
    margin: 0 auto;
    width: 100%; 
    background-color: #333;
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    border-bottom: 2px solid #333;
}

.navbar li {
    margin: 0 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #FFD700;
}

/* Form styles */
form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}



/* Heading styles */
h2 {
    margin-bottom: 15px;
    text-align: center;
}

/* Input field styles */
input[type=email], input[type=submit] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

/* Submit button styles */
input[type=submit] {
    background-color: #575757;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type=submit]:hover {
    background-color: #333;
}

.button {
    display: flex; 
    justify-content: flex-start; /* Center horizontally */
    margin-top: 20px; /* Space above the button */
}

.button {
    display: inline-block; /* Make it inline-block */
    padding: 10px 20px; /* Padding for button */
    background-color: #575757; /* Background color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-size: 1rem; /* Font size */
}