body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}
.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}
.form-group {
    margin-bottom: 1rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
}
input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
button {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
.error {
    color: #dc3545;
    margin-top: 10px;
    display: none;
}
.g-recaptcha > div {
    margin: 0 auto;
    width: 304px !important;
}
#passwordConfirm:invalid {
    border-color: #ff4444;
}
.password-match-error {
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}
.forgot-password {
    text-align: right;
    margin-top: 5px;
    font-size: 0.9em;
}
.forgot-password a {
    color: #007bff;
    text-decoration: none;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover {
    color: black;
}
.logo-container {
display: flex;
justify-content: center;
align-items: center;
gap: 20px; /* Space between logos */
margin-bottom: 25px;
padding-top: 20px;
}

.form-logo {
max-width: 150px; /* Smaller size for each logo */
height: auto;
transition: transform 0.3s ease;
}

.company-logo {
/* Custom styling for company logo if needed */
}

.product-logo {
/* Custom styling for product logo if needed */
}

.form-logo:hover {
transform: scale(1.05);
}
