
.application-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.application-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.logos img {
    width: 100px; /* Adjust the size as needed */
    height: auto;
    max-height: 100px; /* Maintain aspect ratio */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.logos img:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}