@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    /* backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px); */
    background-image: url('./IMG_5757.jpg');
    /* background:black; */
    background-size: cover;
}

.mainbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Aligns items vertically in the center */
    justify-content: center;
    /* Centers items horizontally */
    width: 80%;
    /* Adjust as needed */
    max-width: 1200px;
    /* Maximum width of the container */
}

.left {
color: #fff;

/* From https://css.glass */
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
background: rgba(0, 0, 0, 0.8);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.28);
    width: 40%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.right {
    color: #fff;
/* From https://css.glass */
background: rgba(0, 0, 0, 0.8);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.28);
    width: 60%;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 100%;
    /* This will make sure your image is responsive */
    height: auto;
}

.content-container {
    width: 100%;
    text-align: center;
    /* This centers the text in the content container */
}



#companyForm {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-top: 15px;
}

h1 {
    color: #fff;
    margin-bottom: 0.8em;
    text-align: center;
    margin-top: 0;
}

input[type="checkbox"] {
    height: 20px;
}

.form-container {
    background-color: #fff;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    width: 50%;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="file"],
button,
select {
    width: 100%;
    height: 1.75rem;
    margin-bottom: 0.75rem;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    background-color: transparent;
    -webkit-box-shadow: 0 0 1px #000;
    box-shadow: 0 0 1px #000;
    border-radius: 5px;
    color: white;
}

button {
    background-color: #0863cc;
    cursor: pointer;
    color: white;
    border: 1px solid #b8b8b8;
    margin-top: 1rem;
    margin-bottom: 0;
    border-radius: 25px;
    height: 2.5rem;
    width: 15rem;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

button:hover {
    background-color: rgb(8, 37, 131);
}

#submitTt {
    color: gray;
    font-size: 15px;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-field {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.form-field-datausage {
    display: flex;
    flex-direction: column;
    width: 90%;
}

.form-field-check {
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 10%;
}


@media screen and (max-width: 768px) {
    .mainbox {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    body {
        background-image: none; /* Remove background image for smaller screens */
    }

    .mainbox {
        flex-direction: column; /* Stack columns on smaller screens */
    }

    .left,
    .right {
        width: 100%;
        border-radius: 16px; /* Adjust border-radius for better display */
    }

    .right {
        margin-top: 1rem; /* Add some space between the sections */
    }

    /* Further adjustments can be made based on your design requirements */
}