

/* Body and container */
body1 {
    background-color: #f4f7fc;
    color: #333;
    padding-left: 400px;
    padding-right: 400px;
    
    font-size: 16px;
    
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add 20px padding to left and right */
}

/* Heading Styles */
h1 {
    font-size: 2.5em;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 70px;
}

h2 {
    font-size: 1.8em;
    margin-top: 20px;
    color: #34495e;
}

/* Form Styling */
form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
    margin-bottom: 40px;
    
}

form input,
form select,
form textarea,
form button {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #3498db;
    background-color: #f4f8ff;
    outline: none;
}

form input[type="file"] {
    border: none;
    padding: 8px;
}

form input[type="submit"],
form button {
    background-color: #2980b9;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

form input[type="submit"]:hover,
form button:hover {
    background-color: #3498db;
}

textarea {
    resize: vertical;
}

form select {
    background-color: #f9f9f9;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    body1 {
        padding-left: 50px;
        padding-right: 50px;
    }

    form {
        padding: 20px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.7em;
    }

    .container {
        max-width: 900px;
    }

    .track-form input[type="email"] {
        width: 80%;
    }

    .track-form button {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    body1 {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    form {
        padding: 15px;
    }

    form input,
    form select,
    form textarea,
    form button {
        padding: 12px;
    }

    .track-form input[type="email"] {
        width: 90%;
    }

    .track-form button {
        width: 90%;
        padding: 12px;
    }

    .track-form {
        padding: 30px 10px;
    }
}

@media screen and (max-width: 480px) {
    body1 {
        padding-left: 10px;
        padding-right: 10px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    form {
        padding: 10px;
    }

    form input,
    form select,
    form textarea,
    form button {
        padding: 10px;
    }

    .track-form input[type="email"] {
        width: 100%;
    }

    .track-form button {
        width: 100%;
    }

    footer {
        font-size: 0.8em;
    }
}

/* Track Application Styling */
.track-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    margin-bottom: 40px;
}

.track-form input[type="email"] {
    width: 70%;
    padding: 12px;
}

.track-form button {
    width: 25%;
    padding: 14px;
    background-color: #27ae60;
    font-size: 1.1em;
}

.track-form button:hover {
    background-color: #2ecc71;
}

.track-form label {
    font-size: 1.1em;
    color: #333;
}

/* Application Status Message */
.application-status {
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.application-status.success {
    background-color: #d4edda;
    border-left: 5px solid #28a745;
    color: #155724;
}

.application-status.error {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
    color: #721c24;
}

.application-status p {
    font-size: 1.2em;
}

.application-status strong {
    font-weight: bold;
}

/* Additional Enhancements */
input, textarea, select {
    font-size: 1em;
    padding: 12px;
}

button, input[type="submit"] {
    font-size: 1.1em;
}

/* Footer or other optional elements */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
    color: #7f8c8d;
}

footer a {
    text-decoration: none;
    color: #2980b9;
}

footer a:hover {
    color: #3498db;
}





