/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Login Page Layout */
.login-page {
    display: flex;
    height: 94.5vh;
}

/* Left Section Styling */
.login-left {
    flex: 1;
    background: url(https://img2.tradewheel.com/template1//images/signup-page/log-in-bg-wrappers-new.png) no-repeat right 0 !important;
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    
}

.logo-container {
    text-align: center;
}

.login-logo {
    width: 150px;
    margin-bottom: 20px;
}

.login-instructions {
    margin-top: 10px;
    font-size: 14px;
}

/* Right Section Styling */
.login-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    padding: 20px;
}

/* Login Form Styling */
.login-form {
    width: 100%;
    max-width: 600px;
    background: #f8f8f8;
    padding: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Adjusting the "Remember Me" checkbox and label alignment */
.remember-me {
    display: flex;
    align-items: center;
    gap: 5px; /* Space between the checkbox and label */
    font-size: 14px;

}

.remember-me input[type="checkbox"] {
    margin: 5px; /* Removes default spacing around the checkbox */
    width: 16px; /* Adjust size if needed */
    height: 16px;
}


/* Login Button Styling */
.login-btn {
    width: 30%;
    padding: 10px 0;
    background-color: #f06924;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 15px;
    margin-left: 200px;
}

.login-btn:hover {
    background-color: #d8571e;
}

.login-footer {
    text-align: center;
    font-size: 12px;
    padding: 15px;
    background-color: #f8f8f8;
    color: #666;
    border-top: 1px solid #ddd;
    position: relative;
    bottom: 0;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1); 
}

.login-footer p {
    margin: 0;
    line-height: 1.5;
}

.login-footer a {
    color: #f06924;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Links Container */
.links-container {
    margin-top: 20px;
    text-align: center;
}

.links-container a {
    color: #f06924;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px; /* Space between links */
}

.links-container a:hover {
    text-decoration: underline;
}

.links-container .join-now {
    font-size: 14px;
    margin-top: 10px;
    color: #666;
}

.links-container .join-now a {
    color: #f06924;
    text-decoration: none;
    font-weight: 600;
}

.links-container .join-now a:hover {
    text-decoration: underline;
}
