﻿/* BID Vendors Styles */

/* Logo Colors */
.bid-logo {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 1.5rem;
}

.bid-b {
    color: #f97316; /* Orange 500 */
    font-weight: bold;
}

.bid-i {
    color: #2563eb; /* Blue 600 */
    font-weight: bold;
}

.bid-d {
    color: #374151; /* Gray 700 */
    font-weight: bold;
}

.bid-text {
    color: #374151; /* Gray 700 */
}

/* Form Elements */
.form-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

@media (min-width: 768px) {
    .form-container {
        flex-direction: row;
    }
}

.form-content {
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .form-content {
        width: 50%;
        padding: 4rem;
    }
}

.form-box {
    max-width: 28rem;
    width: 100%;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-sell-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #f97316; /* Orange 500 */
}

.form-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    color: #374151;
}

    .form-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
    }

.form-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

.form-help {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.form-error-help {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
}

.login-button {
    width: 100%;
    background-color: #2563eb; /* Blue 600 */
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
    cursor: pointer;
}

    .login-button:hover {
        background-color: #1d4ed8; /* Blue 700 */
    }

.register-button {
    width: 100%;
    background-color: #d1d5db; /* Gray 300 */
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
    cursor: pointer;
}

    .register-button:hover {
        background-color: #9ca3af; /* Gray 400 */
    }

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox {
    margin-right: 0.5rem;
}

.form-footer {
    margin-top: 2rem;
    text-align: center;
    color: #6b7280;
}

.link {
    color: #2563eb; /* Blue 600 */
}

    .link:hover {
        text-decoration: underline;
    }

.image-container {
    display: none;
}

@media (min-width: 768px) {
    .image-container {
        display: block;
        width: 50%;
        background-color: #e5e7eb;
    }
}

.image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* Update your existing CSS */

.image-container {
    display: none;
}

@media (min-width: 768px) {
    .image-container {
        display: block;
        width: 50%;
        background-color: #e5e7eb;
    }
}

/* Update these classes to include the images */
.login-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('/images/lg1.jpg');
}

.register-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('/images/lg1.jpg'); /* Use the same image or a different one for registration */
}