/* Custom Login & Registration Forms Styles */
.knowAccess-form-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.knowAccess-form-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.knowAccess-form {
    display: flex;
    flex-direction: column;
}

.knowAccess-form-field {
    margin-bottom: 20px;
}

.knowAccess-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.knowAccess-form-field input[type="text"],
.knowAccess-form-field input[type="email"],
.knowAccess-form-field input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.knowAccess-form-field.knowAccess-checkbox {
    display: flex;
    align-items: center;
}

.knowAccess-form-field.knowAccess-checkbox input {
    margin-right: 10px;
}

.knowAccess-form-field.knowAccess-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.knowAccess-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.knowAccess-button:hover {
    background-color: #005177;
}

.knowAccess-form-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.knowAccess-form-links a {
    color: #0073aa;
    text-decoration: none;
}

.knowAccess-form-links a:hover {
    text-decoration: underline;
}

.knowAccess-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

.knowAccess-success {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}
