/* Basic Reset and Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6; /* Light background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container for the form box */
.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

/* Header and Logo */
header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 60px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
}

h1 {
    color: #333;
    font-size: 24px;
}

.form-section p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

/* Form Group Layout */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-size: 14px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f9f9f9;
}

/* Styling for the pre-filled, readonly email field */
input[readonly] {
    background-color: #eee;
    color: #888;
    cursor: not-allowed;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background-color: #007bff; /* A nice blue color */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #aaa;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 25px;
    }
}

body {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: url("imm.png");
    background-size: cover;
    background-repeat: no-repeat;
}