.welcome-heading {
    font-size: 20px;
    font-weight: 600;
}


#login-section {
    min-height: 100vh;
    max-width: 100vw;
}


.form-control {
    /* background-color: #fdfbf7; */
    padding: 8px 10px;
}

.login-button {
    padding: 10px 30px;
    border: none;
    border-radius: 0.5rem;
    background-color: #281f09;
    color: #fffcf4;
    font-size: 16px;
    font-weight: 600;
}

.line-container {
    position: relative;
    text-align: center;
    padding: 0 50px;
    margin-top: 10px;
}

/* Style for the horizontal line */
.line-container::before,
.line-container::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #d7d6d6;

}

/* Style for the text */
.line-container p {
    display: inline;
    background-color: white;
    /* Adjust this if your background is different */
    padding: 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #bababa;
}

.login-form {
    /* max-width: 350px;*/
}

.password-container {
    position: relative;
}

.password-input {
    padding-right: 30px;
    /* Make room for the eye icon */
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}





.error-message {
    color: red;
    margin-top: 5px;
    font-size: 12px;
}

.login-features li {
    font-size: 14px;
    font-weight: 500;
    color: #d3d3d3;
}

.login-features li::before {
    content: '';
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="blue" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-check-circle"%3E%3Cpath d="M22 11.08V12a10 10 0 1 1-5.93-9.14"%3E%3C/path%3E%3Cpath d="m9 11 3 3L22 4"%3E%3C/path%3E%3C/svg%3E');
    display: inline-block;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.login-column {
    width: 100%;
    min-height: 100vh;
    background: rgba(128, 128, 128, 0.08);
}
.info-column {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.info-column::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -10;
    height: 100%;
    width: 100%;
    background-color: white;
    background-image:
        linear-gradient(to right, #8080800a 1px, transparent 1px),
        linear-gradient(to bottom, #8080800a 1px, transparent 1px);
    background-size: 14px 24px;
}

.login-image {
    width: 100%;
    max-width: 100%;
    height: 600px;
    padding: 1.5rem;
    padding-right: 0;
    overflow: hidden;
}

.login-image img {
    object-fit: cover;
    width: 3000px;
    height: 600px;
    object-position: left;
    border-top-left-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.info-message p {
    font-size: 12px;
}

.login-heading-text {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    color: var(--text-800)
}

.login-desc-text {
    font-size: 16px;
    line-height: 1.3;
    max-width: 80ch;
    color: var(--text-600);
}

@media (max-width: 768px) {

    .login-column {
        width: 100%;
    }

    .info-column {
        display: none;
    }
}

.info-message {
    border: 2px solid green
}