.register-section {
    padding: 150px 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    padding: 40px;
}

.login-link {
    text-align: center;
    margin-top: 25px;
    color: #666;
}

.login-link a {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.password-strength {
    height: 5px;
    background-color: #eee;
    margin-top: 8px;
    border-radius: 3px;
    overflow: hidden;
}

.password-strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background-color 0.3s ease;
}


@media (max-width: 768px) {
    .register-container {
        padding: 30px 20px;
    }
}