.bo-se {
    /* background: linear-gradient(to right, #e2e2e2, #c9d6ff); */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.bo-se-1 {
    /* background: linear-gradient(to right, #e2e2e2, #c9d6ff); */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.container_1 {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 900px;

}

.container_2 {
    background-color: #f0f0f0;
    /* border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    width: 70%;
    max-width: 400px;

}


.form-section {
    padding: 20px;
    transition: all 0.3s ease;
}

.form-section:nth-child(odd) {
    background-color: #f0f0f0;
}

h2 {
    color: #000;
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-family: roboto-regular;
}

h1 {
    font-weight: normal;
    font-family: roboto-regular;
    text-align: center;
    color: #000;
    font-size: 28px;
    letter-spacing: -1px;
    line-height: 35px;
    /* padding: 0px 0 20px 0; */
    /* margin: 0px; */
}


.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #34495e;
    font-weight: 600;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"],
input[type="password"]:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}


@media (max-width: 600px) {
    .container {
        width: 100%;
        border-radius: 0;
    }
}

/* .form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

.submit-btn {
    background-color: #ff7200;
    width: 90%;
    color: white;
    padding: 10px 10px;
    border: none;
    /* border-radius: 4px; */
    cursor: pointer;
    font-size: 16px;
    font-family: roboto-bold;
    transition: background-color 0.3s ease;
    margin-left: 20px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #ff7b0f;
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.5);
}

/* Add styling for form input with icons */
.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon i {
    position: absolute;
    left: 10px;
    /* Adjust the icon position */
    font-size: 18px;
    color: #888;
}

.input-icon input {
    padding-left: 40px;
    /* Adjust padding to make space for the icon */
    width: 100%;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.borderline {
    background: url(../images/bg-pat-trans.png) repeat-x;
    width: 100%;
    height: 10px;
    display: block;
}