/* body {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
} */

.form-container {
    /* background-color: #777E90; */
    width: 80%; /* Adjust width as needed */
    max-width: 600px; /* Limit maximum width */
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    border-color: #E6E8EC;
    border-style: solid;
    color: #E6E8EC;
}

.form-contant {
    margin-bottom: 20px;
}

.form-contant h2 {
    margin: auto;
    padding: 10px 0;
    text-align: center;
}

.form-contant .form-label {
    margin-bottom: 5px;
    text-align: left;
}

.form-contant .form-control {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #E6E8EC;
}

.la-btn__dark-md {
    border: 2px solid #777E90;
    color: white;
    padding: 16px 24px;
    border-radius: 90px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: rgb(32, 30, 30);
    margin: auto;
    transition: all 0.3s ease;
}

.la-btn__dark-md:hover {
    background: white;
    color: black;
    border-color: transparent;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .form-container {
        width: 90%;
    }
}

@media screen and (max-width: 576px) {
    .form-contant .form-control {
        padding: 8px;
    }
}
