* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.maincontiner {
    display: flex;
    flex : 1;
    height: 100%;
    gap: 10px; /* Add unit (e.g., px) to the gap property */
    flex-direction: column;
}

.rightcontainer {
    flex : 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formcontianer {
    display: flex;
    flex-direction: column;
    width: 70%;
    max-width: 600px;
    height: fit-content;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    /* display: none */
}
.heading {
    font-size: 32px;
    line-height: 1.36;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: #333;
    /* margin-bottom: 20px; */
}
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
input,
select {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    /* background-color: #F5F5F5; */
    font-size: 15px;
    box-sizing: border-box;
}
input:hover {
    border-color: #333;
}
select:hover {
    border-color: #333;
}
button {
    height: 40px;
    background-color: #D33852;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}
.button:hover {
    background-color: #C02739;
}
.inputcontainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.inputheading {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
option {
    background-color: #F5F5F5; /* Background color for each option */
    padding: 10px;
    font-size: 15px;
    color: #333; /* Text color for each option */
}

option:hover {
    background-color: #ccc;
    cursor: pointer;
}

.logo {
    position: absolute;
    top: 60px;
    left: 50px;
    width: 137px;
    height: 48px;
    color: white;
}

@media only screen and (max-width: 767px) {
    .logo {
        /* Adjust the styling for mobile */
        top: 30px;
        left: 20px;
        width: 80px;
        height: 30px;
        font-size: 14px; /* You can adjust the font size for better visibility on smaller screens */
    }
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    display: none;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }