/* Blurred Content */
.blurred-content-wrapper {
    filter: blur(1px);
    pointer-events: none;
}

/* Container Setup */
.restricted-content-locker {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 350px;
    padding: 20px;
}

/* Login Box */
.login-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10;
    max-width: 400px;
    width: 90%;
    border: 2px solid #cd2727;
}

/* Title */
.login-title {
    font-size: 22px;
    font-weight: bold;
    color: #cd2727;
    margin-bottom: 10px;
}

/* Message */
.login-message {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}

/* Buttons Container */
.login-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* Sign in and Register Buttons */
.login-btn, .register-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background: #cd2727;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border: 2px solid #cd2727;
}

.login-btn:hover, .register-btn:hover {
    background: #a11e1e;
    border-color: #a11e1e;
}

/* Icon Styling */
.login-btn i, .register-btn i {
    margin-right: 5px;
}

/* OR Divider */
.or-divider {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .login-overlay {
        width: 95%;
        padding: 20px;
    }

    .login-buttons {
        flex-direction: column;
    }

    .or-divider {
        display: none;
    }

    .login-btn, .register-btn {
        width: 100%;
        text-align: center;
    }
}
