body { height: auto; }
.btn-primary { color: #fff; background-color: #0B72B4; }
.btn-primary:hover { background-color: #004c99; }
.section { padding: 0; }
#login { background: url('images/cro1-01.png') center/cover no-repeat; padding: 50px 0; }
.form { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); border-radius: 10px; overflow: hidden; }
.form-container { padding: 40px; justify-content: center; }
.form-container h2 { margin-bottom: 20px; color: #333; }

.col-lg-6 .Dummy {
  width: 100%; height: 100%; object-fit: fill; border-radius: 10px 0 0 10px;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2); transition: transform 0.3s, box-shadow 0.3s ease-in-out;
}
.col-lg-6 .Dummy:hover { transform: scale(1.05); box-shadow: 10px 0 20px rgba(0, 0, 0, 0.3); }

@media (max-width: 850px) {
  #rechargeBtn { display: block !important; margin: -80px 0 0 -10px; }
  .nav-recharge { display: none; }
  .lead { margin-top: 85px; }
}
@media (min-width: 992px) {
  .lead_image { margin-top: 230px; }
  #rechargeBtn { display: none; }
  .nav-recharge { display: block; }
}
@media (max-width: 768px) {
  .col-6 { width: 100%; }
  .col-6 img { border-radius: 10px 10px 0 0; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    min-height: auto;
    background-color: #f0f0f0;
}

.main-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background-color: white;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.left-side {
    width: 50%;
}

.left-side img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.right-side {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.form-group input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #004c99;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-side, .right-side {
        width: 100%;
    }

    .left-side img {
        height: 300px;
    }
}
