
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.register-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: red;
    margin-top: 1rem;
}

.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;
}

.error-container {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
}

.error-text {
    color: #dc3545;
    font-size: 0.875rem;
    margin: 0.25rem 0;
}

.success-message {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
}

.success-message h3 {
    margin-top: 0;
    color: #28a745;
}

.success-message strong {
    color: #155724;
    font-weight: bold;
}

#registeredEmail {
    font-weight: bold;
}

.logo-container {
    text-align: center;
    margin-bottom: 25px;
    padding-top: 20px;
}

.form-logo {
    max-width: 180px;
    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);
}
