.logo-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 90px;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.card-bg {
    background: #E5E5E5;
}
form#form10 input, form#form10 textarea, form#form10 select, form#form10 label {
    color: #0B234F;
}
form#form10 input::placeholder{
    color: #0B234F;
    opacity: 0.7;
}
form#form10 select {
    font-size: 14px;
}

.card-title {
    color:#0B234F;
    font-size:40px; 
    text-align:center;
    font-weight: bold;
}

@media only screen and (max-width: 1024px) {
    .logo-container {
        height: 80px;
    }
}

@media only screen and (max-width: 768px) {
    .logo-container {
        display: flex;
        justify-content: center;
        height: 60px;
    }
    .logo-container img {
        max-width: 85%;
        max-height: 85%;
    }
}

@media only screen and (max-width: 425px) {
    .logo-container {
        justify-content: center;
        height: 50px;
    }
}