.register-container {
    margin-top: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.register-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.register-image img {
    width: 100%;
    height: auto;
}

.register-form {
    background-color: #ffffff;
    padding: 30px;
}

.register-form h2 {
    color: #333;
    margin-bottom: 20px;
}

.register-form .form-control {
    margin-bottom: 20px;
}

.password-requirements {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    display: none;
    /* Initially hidden */
}

.password-requirements li {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.password-requirements li.valid {
    color: #28a745;
    background: #d4edda;
    border-color: #c3e6cb;
}

.password-requirements li.invalid {
    color: #dc3545;
    background: #f8d7da;
    border-color: #f5c6cb;
}

.password-requirements li span {
    margin-right: 10px;
}