@import url('https://fonts.googleapis.com/css2?family=Klein&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque&display=swap');
/* Basic Reset */
body {
    margin: 0;
    font-family: klien, sans-serif;
    line-height: 1.6;
    color: #0F163E;
    background-color: #0F163E;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Header */
.page-header {
    background-color: #0F163E; /* Header background color */
    color: #ffffff; /* Header text color */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Allows the logo to stay on the left */
}

.page-header .header-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center; /* Center the title */
}
.page-header .logo img {
    width: 50px; /* Set the width of the logo */
    height: 50px; /* Set the height of the logo */
    object-fit: contain; /* Ensure the image fits within the specified dimensions */
}

.page-header .logo {
    position: absolute;
    left: 10%; /* Adjust if necessary */
}

.page-header h1 {
    font-size: 20px;
    font-weight: bold;
}

/* Feature Card */
.request-feature-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
    background-color: #f4f4f4;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.feature-card h2 {
    margin-bottom: 20px;
    color: #0F163E;
}

.feature-card label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
}

.feature-card input,
.feature-card textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.feature-card button {
    width: 100%;
    padding: 20px;
    background-color: #0F163E;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.feature-card button:hover {
    background-color: #F59830; /* Button hover color */
}

/* Footer Styling - Ensure the iframe fits properly */
iframe {
    display: block;
    width: 100%;
    border: none;
    height: auto;
}


/* Footer Styles */
footer {
    background-color: #ffffff;
    color: #0F163E;
    text-align: center;
    padding: 20px 30px;
}


footer a {
    text-decoration: underline;
    margin: 0 10px;
}

footer .socials {
    display: flex;
    justify-content: center; /* Center social icons horizontally */
    margin-top: 10px; /* Space between other footer elements and social icons */
    max-height: 20px;
}

footer .socials a {
    margin: 0 10px; /* Space between social icons */
    color: #fff; /* Color of social icons */
    font-size: 24px; /* Size of social icons */
    text-decoration: none; /* Remove underline from links */
}