.input-container {
    display: flex;
    justify-content: space-between;
}

.input-container input {
    box-sizing: border-box;
    width: 48%;
    margin-right: 2%;
}

.input-container input:last-child {
    margin-right: 0;
}

.logo-upload {
    display: flex;
    align-items: center;
    gap: 0px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    width: 100%;
    overflow: hidden;
    background-color: #003780;
    margin-bottom:15px;
    margin-left: 0em;
}

@media only screen and (min-width: 768px) {
    .logo-upload {
        display: flex;
        align-items: center;
        gap: 20px;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
        width: 45%;
        overflow: hidden;
        background-color: #003780;
        margin-bottom:15px;
        margin-left: 2.96em;
    }
}

.upload-label {
    display: inline-block;
    line-height: 84px;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    color: #fff;
    background-color: #003780;
    text-align: center;
    border-right: 1px solid #ccc;
    height: 100%;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 1;
    flex-basis: 0;
}

.logo-preview {
    flex-grow: 2;
    flex-basis: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    height: 100px;  /* Adjust this value to your needs */
    padding: 10px;  /* Adjust this value to your needs */
}

.logo-preview img {
    height: 100%; /* This ensures that your image fits into the provided space. */
    width: auto; /* This keeps the aspect ratio of your image while it scales.*/
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* This makes sure your image will not get cut off. */
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkbox-container {
    display: flex;
    align-items: center;
}

.button {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    background: #e94963;
    border: 1px solid #e94963;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    padding: 10px 18px 10px 18px;
    border-radius: 21px;
    cursor: pointer;
    text-align: center;
    transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

@media only screen and (min-width: 768px) {
    .button {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (min-width: 1000px) {
    .button {
        font-size: 14px;
        padding-top: 14px;
        padding-bottom: 14px;
        border-radius: 26px;
    }
}

@media only screen and (min-width: 1030px) {
    .button {
        padding: 12px 30px 12px 30px;
        border-radius: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    .button {
        padding: 15px 35px 15px 35px;
        border-radius: 26px;
    }
}
.input-wrap {
    text-align: start;
}
.radio-label {
    font-weight:500;
}