/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #a5d6a7);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
	margin-top: 50px;
	margin-bottom: 50px;
}

/* Form Container */
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 450px;
    transition: 0.3s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
}

.form-container:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
   
    
}

.header-container img {
    width: 100%;
    height: auto;
	margin-top: -80px;
	margin-bottom: -70px;
  
}

.header-container h1 {
    margin: 0;
    font-size: 26px;
    color: #2c3e50;
}

/* Form Group */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

/* Input Fields */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fafafa;
    transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #28a745;
    outline: none;
    background: #f1f8e9;
}

/* File Input */
.form-group input[type="file"] {
    padding: 12px;
    border: 2px dashed #aaa;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #28a745;
}

/* Image Preview Section */
#imagePreviewContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

#imagePreviewContainer img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ddd;
    padding: 3px;
    transition: transform 0.3s ease;
}

#imagePreviewContainer img:hover {
    transform: scale(1.1);
}

/* Submit Button */
button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #43a047, #388e3c);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

button:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new{
	text-align: center;
}