/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* ✅ Use Roboto font */
    margin: 0;
    padding: 0;
    background-color: #FFFFFF; /* ✅ White background */
    color: #082C4F; /* ✅ Primary text color */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* ✅ Ensure body fills the viewport */
}

/* Wrapper (Push Footer to Bottom) */
.wrapper {
    flex: 1; /* ✅ Pushes the footer down */
}

/* Header */
header {
    background: #FFFFFF; /* ✅ White header */
    color: #082C4F; /* ✅ Dark blue text */
    padding: 15px 0;
    text-align: center;
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

/* Logo Styling */
.logo {
    height: 40px; /* ✅ Adjusted height for rectangular logo */
    width: auto; /* ✅ Maintain aspect ratio */
    position: relative;
    left: 0; /* ✅ Align to left */
}

/* Navigation */
nav {
    margin-left: auto;
}

nav a {
    color: #082C4F; /* ✅ Dark blue to match branding */
    margin-left: 15px;
    text-decoration: none;
    font-weight: normal;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 800px;
    margin: 60px auto;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer (Always at the Bottom) */
footer {
    background: #33383C; /* ✅ Dark grey */
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto;
    width: 100%;
}

/* ✅ Updated Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 12px; /* ✅ Slightly less spacing */
    align-items: flex-start; /* ✅ Align left */
    max-width: 100%;
    width: 100%;
}

form label {
    font-size: 16px; /* ✅ Keep labels readable */
    font-weight: bold;
}

/* ✅ Input Fields */
input {
    width: 100%; /* ✅ Full width */
    max-width: 300px; /* ✅ More reasonable width */
    height: 30px; /* ✅ Smaller height */
    padding: 8px;
    font-size: 14px; /* ✅ Normal-sized text */
    border: 1px solid #989899; /* ✅ Medium grey border */
    border-radius: 6px; /* ✅ Slightly rounded */
    background-color: #EFEFEF; /* ✅ Light grey background */
    outline: none;
}

input:focus {
    border-color: #D6B373; /* ✅ Gold outline on focus */
}

/* ✅ Buttons */
button {
    width: 100%;
    max-width: 300px; /* ✅ Slightly smaller */
    padding: 10px; /* ✅ Reduced padding */
    font-size: 16px; /* ✅ Normal text */
    background: #D6B373; /* ✅ Gold button */
    color: #082C4F;
    border: none;
    border-radius: 8px; /* ✅ Slightly rounded corners */
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #B9995C; /* ✅ Slightly darker gold */
}

/* ✅ Error Messages */
.error {
    color: #DA7047; /* ✅ Bright red for errors */
    font-weight: bold;
    text-align: left;
}
