body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
}
.main-box{
    display: flex;
    width:110%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.795);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.left-section {
    background: url(/static/img/login-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    padding:40px;
    text-align: center;
    height: 100%;
    width: 100%;
}
.right-section {
    padding: 30px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.forgot-password {
    display: block;
    text-align:left;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    margin: 5px 0px;
}
.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #000000;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0px ;
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
}
.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
    margin: 0 10px;
}
.signup {
    text-align: center;
    font-size: 14px;
}
.signup a {
    color: #007bff;
    text-decoration: none;
}

label{
    margin: 22px 0px 0px 0px  ;
}