* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    color: #FF416C;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.nav-links a i {
    margin-right: 5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.benefit-icon {
    color: #FF416C;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-description {
    color: #666;
    line-height: 1.5;
}

.form-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.form-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.form-section h3 {
    color: #FF416C;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.form-section p {
    color: #666;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.checkbox-group {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.checkbox-group label {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

.document-upload {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
}

.document-upload p {
    color: #666;
    margin-top: 10px;
}

button {
    background: linear-gradient(to right, #FF416C, #FF4B2B);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

button:hover {
    opacity: 0.9;
}

#imagePreview {
    max-width: 200px;
    margin-top: 10px;
    display: none;
}
  .error {
color: red !important;
font-size: 12px;
}

@media (max-width: 768px) {
    .benefits-section {
        flex-direction: column;
    }

    .benefit-card {
        margin-bottom: 20px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}
 .toast {
    position: fixed;        /* Fix it to the screen */
    top: 20px;              /* Distance from the top */
    right: 20px;            /* Distance from the right */
    background-color: #333; /* Dark background */
    color: white;           /* White text color */
    padding: 15px;          /* Some padding */
    border-radius: 5px;     /* Rounded corners */
    font-size: 16px;        /* Text size */
    opacity: 0;             /* Initially hidden */
    visibility: hidden;     /* Initially hidden */
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* To make it visible */
.toast.show {
    opacity: 1;
    visibility: visible;
}

/* Optional: Animation to slide in from top */
.toast.show {
    animation: slideIn 0.5s ease-out;
}
.red{
    background-color: red;
}
.green{
    background-color: green;
}

/* Slide-in animation from top */
@keyframes slideIn {
    from {
        top: -50px;
        opacity: 0;
    }
    to {
        top: 20px;
        opacity: 1;
    }
}

.alert-box
{
    border: 1px solid #000;
    padding: 15px;
    border-radius: 9px;
    text-align: center;
}

