
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f8f9fa;
}

.login-wrapper {
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: 80vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    margin: auto;
}

.left-section {
    flex: 1;
    background: url('../images/side_panel.svg') no-repeat center center;
    background-size: contain;
    background-color: #0A133F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    color: #fff;
    padding: 20px;
    text-align: center;
    position:relative;
    height: 100%; /* Ensures the container takes the full height */
    width: 100%; /* Ensures the container spans the full width */
}
.left-section {
  flex: 1;
}

.right-section {
  flex: 2;
}

.left-section img {
    width: 300px; /* Logo size */
    margin-bottom: 1px;
}

.left-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    font-style:italic;
    margin-bottom: 10px;
}

.right-section {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fbff;
}

.right-section h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.right-section h3 span {
    color: #ff007b; /* Highlighted color */
}

.form-control {
    border-radius: 10px;
}

.btn-primary {
    border-radius: 10px;
    background-color: #0056d2;
    border-color: #0056d2;
}

.btn-primary:hover {
    background-color: #0041a3;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column; /* Stack the sections vertically */
        height: auto; /* Allow height to adjust automatically */
    }

    .left-section {
        height: 40vh; /* Set the height for the left section */
        width: 100%; /* Ensure it spans the full width */
        padding: 20px; /* Adjust padding */
        text-align: center; /* Center align text for better visuals */
        display:none;
    }

    .right-section {
        height: auto; /* Allow height to adjust */
        width: 100%; /* Ensure it spans the full width */
        padding: 20px; /* Reduce padding */
    }

    .left-section img {
        display:none;
    }

    footer {
        font-size: 0.8rem; /* Adjust font size for footer */
        padding: 10px; /* Add some padding */
    }
    .right-section h3 {
        font-size: 1.6rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 20px;
    }

  }
