/* style.css */
body {
    background-image: url('https://karthik-v202.github.io/Disaster-Wise/src/login.jpg');
    background-size:cover;
    background-position: center;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0; /* Remove default margin */
}


.search-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem; /* Increased margin */
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 0.5rem 1rem 0.5rem 2.5rem; /* Adjust padding for icon */
    border-radius: 2rem; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    outline: none;
    background-color: #f0f0f0; /* Light gray background */
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}
.report-form-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem; /* Add some padding around the form */
}

.report-form {
    background-color: white;
    border-radius: 1.5rem;
    padding: 2rem; /* Increased padding */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 768px; /* Set a maximum width for larger screens */
}

.report-form h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.report-form-content {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Spacing between form elements */
}

.input-group {
    position: relative;
}

.form-input {
    width: 90%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border-radius: 2rem;
    background-color: #f0f0f0;
    outline: none;
}

.input-group i {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}

.input-group-inline {
    display: flex;
    gap: 1rem; /* Spacing between inline inputs */
}

.button-group {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.button-group button {
    background-color: #888; /* Slightly darker gray */
    color: white;
    padding: 0.75rem 2rem; /* Adjusted padding */
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navigation-bar {
    background-color: white;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Shadow at the top */
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer; /* Make items clickable */
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #555; /* Slightly darker icon color */
}

.nav-item span {
    font-size: 0.8rem;
    color: #555; /* Slightly darker text color */
}

.nav-item.active i, .nav-item.active span {
    color: #007bff; /* Highlight active item */
}
