/* Reset basic settings */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    /* Background Image Settings */
    /* Replace 'background.jpg' with your actual image file */
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    
    /* Center the content */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

/* Optional: Dark overlay to make text readable on busy backgrounds */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 150px; /* Adjust based on your logo size */
    height: auto;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.form-card h1 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #222;
}

.form-card p {
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
    color: #444;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #4A90E2;
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4A90E2; /* Change this to match your brand color */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #357ABD;
}