* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    direction: ltr;  /* Ensure all text follows left-to-right */
}

body {
    background-color: #fff;
    color: #333;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;    
    flex-direction: column;
    direction: ltr;  /* Ensure body text flows left to right */
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
    direction: ltr; /* Ensure container text flows left to right */
}

.logo {
    margin-top: -20px; /* Add space above the logo */
    margin-bottom: 35px;
}

.logo img {
    width: 245px;
    height: 39px;
}

.tagline {             
    color: #888b8b;
    margin-top: 10px;
    font-size: 20px;
}

.form-container {
    width: 60%;
    margin-right: 40px;
}

.table-container {
    width: 40%;
}

.login-form h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="email"], #input_account_password {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 134%;
    max-width: 400px;
}

button {
    background-color: #2ba6c8;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 1px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 134%;
    max-width: 400px;
}

button:hover {
    background-color: #008bbf;
}

.show-password a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: black;
}

.hide-password a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: black;
}

.forgot-password {
    font-size: 16px;
    color: red;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}

.forgot-password span {
    color: #00a4e4;
}

.terms, .captcha {
    font-size: 17px;
    color: #000;
    direction: ltr; 
    text-align: left;
}

.terms a, .captcha a {
    color: #888b8b;
    text-decoration: none;
}

.first-time {
    text-align: left;
    margin-top: 20px;    
}

.first-time p {
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: bold;
}

.post-ad {
    color: #b5486d;
    text-decoration: underline;
    font-size: 19px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-tag {
    color: #888b8b;
    text-decoration: none;
    font-size: 20px;
}
.inline-list {
    display: flex;
    gap: 20px; /* Adjust this value as needed for spacing */
    list-style: none;
    padding: 0;
}

.inline-list li a {
    text-decoration: none;
    color: #b5486d; /* Change this as per your design */
}
