
body {
    font-family: Arial, sans-serif;
    background-color: #fdf2dc;
    margin: 0;
    padding: 0;
}


.login-section {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 140px); 
}


.left-pane {
    flex: 1;
    background-color: #f7edd7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.left-pane img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.slider-text {
    min-height: 60px;
    margin-top: 10px;
    position: relative;
}

.slide {
    display: none;
    font-size: 16px;
    color: #333;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    background-color: #1c2b44;
    padding: 6px 12px;
    border-radius: 15px;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ffe18a;
    border-radius: 50%;
    transition: background-color 0.3s;
    border: none;
}

.dot.active {
    background-color: white;
}


.login-container {
    flex: 1;
    background-color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.tab-header {
    display: flex;
    justify-content: left;
    gap: 40px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
    position: relative;
}

.tab {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    position: relative;
    padding: 8px 0;
    text-align: center;
}

.tab.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}



form {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group.checkbox {
    display: flex;
    flex-direction: row;
    align-items: left;
    gap: 8px;
    margin-bottom: 20px;

}

.form-group.checkbox label {
    margin: 0px;
}

.form-group.checkbox input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}


.login-button {
    width: 100%;
    background-color: #d5a73c;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #c4942f;
}

@media (max-width: 768px) {
    .login-section {
        flex-direction: column;
        height: auto;
    }

    .left-pane,
    .login-container {
        width: 100%;
        padding: 20px;
    }

    .left-pane img {
        max-width: 180px;
    }

    .tab-header {
        max-width: 100%;
    }
}
